From f27e98f9a73c44896aba8306cbaa645cf28a8950 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 31 Aug 2017 12:09:48 +0200 Subject: loplugin:constparams: odk (clang-cl) Change-Id: I2daf0b0868d4bdfb412575b25dbe644e76607342 --- odk/source/unoapploader/win/unoapploader.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'odk/source') diff --git a/odk/source/unoapploader/win/unoapploader.c b/odk/source/unoapploader/win/unoapploader.c index e010aef830bc..70530379be82 100644 --- a/odk/source/unoapploader/win/unoapploader.c +++ b/odk/source/unoapploader/win/unoapploader.c @@ -36,7 +36,7 @@ #define MY_LENGTH(s) (sizeof (s) / sizeof *(s) - 1) char const* getPath(void); -char* createCommandLine( char* lpCmdLine ); +char* createCommandLine( char const * lpCmdLine ); FILE* getErrorFile( int create ); void writeError( const char* errstr ); void closeErrorFile(void); @@ -299,7 +299,7 @@ char const* getPath() * @return the command line for the application process or NULL, if an error * occurred */ -char* createCommandLine( char* appendix ) +char* createCommandLine( char const * appendix ) { const char* CMDPREFIX = "_"; const char* DQUOTE = "\""; -- cgit