From a15715c34309416e76ebd2007a51ff6c42f28817 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 17 Jun 2014 15:36:26 +0200 Subject: -Wstrict-prototypes ...no reason to not have it enabled for URE C include files and what little real C code is still left. (But note that Clang ignores that warning.) Change-Id: Ia6940f9f940a0c226e9b724331d65c9862ce32e6 --- odk/source/unoapploader/unx/unoapploader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'odk/source') diff --git a/odk/source/unoapploader/unx/unoapploader.c b/odk/source/unoapploader/unx/unoapploader.c index 5dc3abe874c5..48e36786b37c 100644 --- a/odk/source/unoapploader/unx/unoapploader.c +++ b/odk/source/unoapploader/unx/unoapploader.c @@ -32,7 +32,7 @@ #include "rtl/string.h" #include "sal/types.h" -char const* getPath(); +char const* getPath(void); char* createCommandName( char* argv0 ); const int SEPARATOR = '/'; @@ -234,7 +234,7 @@ int main( int argc, char *argv[] ) * @return the installation path or NULL, if no installation was specified or * found, or if an error occurred */ -char const* getPath() +char const* getPath(void) { char const* path = cppuhelper_detail_findSofficePath(); -- cgit