Module: wine Branch: master Commit: 5839fd7f10f8376ef6264e25b492e06aae4a62df URL: http://source.winehq.org/git/wine.git/?a=commit;h=5839fd7f10f8376ef6264e25b4...
Author: Eric Pouech eric.pouech@wanadoo.fr Date: Wed Nov 29 21:40:26 2006 +0100
winedump: Make dump mode the default.
---
tools/winedump/main.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/tools/winedump/main.c b/tools/winedump/main.c index 193fb74..f0ea281 100644 --- a/tools/winedump/main.c +++ b/tools/winedump/main.c @@ -306,6 +306,9 @@ static void parse_options (char *argv[])
if (VERBOSE && QUIET) fatal ("Options -v and -q are mutually exclusive"); + + if (globals.mode == NONE) + do_dump(""); }
static void set_module_name(unsigned setUC)