Module: wine Branch: master Commit: 77462fc68dba49b06bfbc70473b69a8ef465724a URL: http://source.winehq.org/git/wine.git/?a=commit;h=77462fc68dba49b06bfbc70473...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Mon Sep 2 11:09:02 2013 +0200
winedbg: Fix winedbg --help message formatting.
---
programs/winedbg/winedbg.c | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/programs/winedbg/winedbg.c b/programs/winedbg/winedbg.c index bf1234c..11782fe 100644 --- a/programs/winedbg/winedbg.c +++ b/programs/winedbg/winedbg.c @@ -566,20 +566,20 @@ static int dbg_winedbg_usage(BOOL advanced) if (advanced) { dbg_printf("Usage:\n" - " winedbg cmdline launch process 'cmdline' (as if you were starting\n" + " winedbg <cmdline> launch process <cmdline> (as if you were starting\n" " it with wine) and run WineDbg on it\n" " winedbg <num> attach to running process of wpid <num> and run\n" " WineDbg on it\n" - " winedbg --gdb cmdline launch process 'cmdline' (as if you were starting\n" + " winedbg --gdb <cmdline> launch process <cmdline> (as if you were starting\n" " wine) and run gdb (proxied) on it\n" " winedbg --gdb <num> attach to running process of wpid <num> and run\n" " gdb (proxied) on it\n" - " winedbg file.mdmp reload the minidump file.mdmp into memory and run\n" + " winedbg <file.mdmp> reload the minidump <file.mdmp> into memory and run\n" " WineDbg on it\n" " winedbg --help prints advanced options\n"); } else - dbg_printf("Usage:\n\twinedbg [ [ --gdb ] [ prog-name [ prog-args ] | <num> | file.mdmp | --help ]\n"); + dbg_printf("Usage:\n\twinedbg [ [ --gdb ] [ <prog-name> [ <prog-args> ] | <num> | <file.mdmp> | --help ]\n"); return 0; }