From b36b5fa8daf771575ca90213f9b1708547bf6353 Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 21 Jan 2018 12:19:27 +0000 Subject: [PATCH] Changed fallback message to be consistent with fucntion name --- src/osg/os_utils.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osg/os_utils.cpp b/src/osg/os_utils.cpp index 84613ad81..d8d881791 100644 --- a/src/osg/os_utils.cpp +++ b/src/osg/os_utils.cpp @@ -20,7 +20,7 @@ int osg_system(const char* command) #ifdef OSG_SYSTEM_SUPPORTED return system(command); #else - printf("osgSystem(%s) not supported.\n", command); + printf("osg_system(%s) not supported.\n", command); #endif }