- Partial revert of 42973 for the systeminfo utility -- the issue was fixed in 42930

- GCC 4.1.3 doesn't support %I64 -- compile the code conditionally

svn path=/trunk/; revision=42975
This commit is contained in:
Stefan Ginsberg 2009-08-31 14:37:54 +00:00
parent 6ca346d8d4
commit 125b919b06
3 changed files with 11 additions and 2 deletions

View file

@ -358,8 +358,7 @@ AllSysInfo(VOID)
int
main(int argc, char *argv[])
{
char str[] = "/?";
if (argc > 1 && !strcmp(argv[1], str))
if (argc > 1 && !strcmp(argv[1], "/?"))
{
Usage();
return 0;