Changed fallback message to be consistent with fucntion name

This commit is contained in:
Robert Osfield 2018-01-21 12:19:27 +00:00
parent 18d5a9159f
commit b36b5fa8da

View File

@ -20,7 +20,7 @@ int osg_system(const char* command)
#ifdef OSG_SYSTEM_SUPPORTED #ifdef OSG_SYSTEM_SUPPORTED
return system(command); return system(command);
#else #else
printf("osgSystem(%s) not supported.\n", command); printf("osg_system(%s) not supported.\n", command);
#endif #endif
} }