summaryrefslogtreecommitdiff
path: root/odk
diff options
context:
space:
mode:
Diffstat (limited to 'odk')
-rw-r--r--odk/source/unoapploader/win/unoapploader.c4
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 = "\"";