diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-08-31 12:09:48 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-08-31 12:14:40 +0200 |
commit | f27e98f9a73c44896aba8306cbaa645cf28a8950 (patch) | |
tree | 4823c3f632272085ae2d502c0d5965898494f4a0 /odk | |
parent | 597191920ae8ba1f95ae7f6f916a7bef67a58990 (diff) |
loplugin:constparams: odk (clang-cl)
Change-Id: I2daf0b0868d4bdfb412575b25dbe644e76607342
Diffstat (limited to 'odk')
-rw-r--r-- | odk/source/unoapploader/win/unoapploader.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 = "\""; |