winedbg: Return 0 if --help is specified.

oldstable
Austin English 2009-06-24 21:35:21 -05:00 committed by Alexandre Julliard
parent a5231a60a1
commit 7f13b126d5
1 changed files with 1 additions and 1 deletions

View File

@ -587,7 +587,7 @@ static int dbg_winedbg_usage(BOOL advanced)
}
else
dbg_printf("Usage:\n\twinedbg [ [ --gdb ] [ prog-name [ prog-args ] | <num> | file.mdmp | --help ]\n");
return -1;
return 0;
}
void dbg_start_interactive(HANDLE hFile)