In osrfSystemBootstrap(): added a const qualifier
authorscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 12 Sep 2009 17:53:39 +0000 (17:53 +0000)
committerscottmk <scottmk@9efc2488-bf62-4759-914b-345cdb29e865>
Sat, 12 Sep 2009 17:53:39 +0000 (17:53 +0000)
to appname.

git-svn-id: svn://svn.open-ils.org/OpenSRF/trunk@1778 9efc2488-bf62-4759-914b-345cdb29e865

src/libopensrf/osrf_system.c

index 6814ea3..7717726 100644 (file)
@@ -129,7 +129,7 @@ int osrfSystemBootstrap( const char* hostname, const char* configfile,
                }
                jsonObjectFree(apps);
 
-               char* appname = NULL;
+               const char* appname = NULL;
                i = 0;
                while( (appname = osrfStringArrayGetString(arr, i++)) ) {