cleanup for real this time

This commit is contained in:
Glenn Maynard
2004-06-01 01:33:23 +00:00
parent 0c49eff732
commit ab29ced0a1
+1 -1
View File
@@ -868,7 +868,7 @@ static void WriteLogHeader()
// surround all params with some marker, as they might have whitespace. // surround all params with some marker, as they might have whitespace.
// using [[ and ]], as they are not likely to be in the params. // using [[ and ]], as they are not likely to be in the params.
args += "[[" + g_argv[i] + "]]"; args += ssprintf( "[[%s]]", g_argv[i] );
} }
LOG->Info( "Command line args (count=%d): %s", (g_argc - 1), args.c_str()); LOG->Info( "Command line args (count=%d): %s", (g_argc - 1), args.c_str());
} }