Rich Mattes
-
2009-10-12
When building the gbxserialacfr, gcc throws an error about an invalid conversion from char* to const char*.
gearbox/src/gbxserialacfr/lockfile/lockfile.cpp:159: error: invalid conversion from ‘const char*’ to ‘char*’
Changing the declaration of the variable p from char* to const char* suppresses the warning, and doesn't look like it has any later ramifications. I've included a patch to fix it.