From 43fab92c8c5904ad4436fc018b048d6db9347f39 Mon Sep 17 00:00:00 2001 From: jbleyel Date: Tue, 29 Oct 2024 13:28:00 +0100 Subject: [PATCH] =?UTF-8?q?[Networkbrowser]=20*=20fix:=20error:=20implicit?= =?UTF-8?q?=20declaration=20of=20function=20=E2=80=98showNfsShare=E2=80=99?= =?UTF-8?q?;=20did=20you=20mean=20=E2=80=98=5FnfsShare=E2=80=99=3F=20[-Wim?= =?UTF-8?q?plicit-function-declaration]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- networkbrowser/src/lib/showmount.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/networkbrowser/src/lib/showmount.h b/networkbrowser/src/lib/showmount.h index ef1c4676f5..d7cf0a829c 100644 --- a/networkbrowser/src/lib/showmount.h +++ b/networkbrowser/src/lib/showmount.h @@ -2,10 +2,10 @@ # # http://newnigma2.to # -# $Id$ +# $Id$ # # Copyright (C) 2008 by nixkoenner -# +# # License: GPL # # This program is free software; you can redistribute it and/or modify @@ -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 -