Skip to content

Commit

Permalink
[Networkbrowser]
Browse files Browse the repository at this point in the history
* fix: error: implicit declaration of function ‘showNfsShare’; did you mean ‘_nfsShare’? [-Wimplicit-function-declaration]
  • Loading branch information
jbleyel committed Oct 29, 2024
1 parent 1219f89 commit 43fab92
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions networkbrowser/src/lib/showmount.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
#
# http://newnigma2.to
#
# $Id$
# $Id$
#
# Copyright (C) 2008 by nixkoenner <[email protected]>
#
#
# License: GPL
#
# This program is free software; you can redistribute it and/or modify
Expand All @@ -27,14 +27,14 @@
#ifndef SHOWMOUNT_H
#define SHOWMOUNT_H

typedef struct {
typedef struct
{
char share[256];
char ip[41];
} nfsinfo;

nfsinfo * newNfsInfo();
nfsinfo *newNfsInfo();
void freeNfsInfo(nfsinfo *nfsInfo);

int showNfsShare(char *pythonIp, nfsinfo *nfsInfo);

#endif

0 comments on commit 43fab92

Please sign in to comment.