- Timestamp:
- Apr 3, 2009 8:48:45 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxService.cpp
r18670 r18672 36 36 #include <iprt/asm.h> 37 37 #include <iprt/path.h> 38 #include <VBox/ Log.h>38 #include <VBox/log.h> 39 39 #include <VBox/VBoxGuest.h> 40 40 #include "VBoxServiceInternal.h" … … 44 44 *******************************************************************************/ 45 45 /** The program name (derived from argv[0]). */ 46 char *g_pszProgName = "";46 char *g_pszProgName; 47 47 /** The current verbosity level. */ 48 48 int g_cVerbosity = 0; … … 368 368 if( (*psz != '-') 369 369 #if defined(RT_OS_WINDOWS) 370 && (*psz != '/')) 371 #endif 370 && (*psz != '/') 371 #endif 372 ) 372 373 return VBoxServiceSyntax("Unknown argument '%s'\n", psz); 373 374 psz++;
Note:
See TracChangeset
for help on using the changeset viewer.