From 27c01617973e39da6f80e8850cd55b2e0c669541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Wed, 20 Oct 2010 23:38:52 +0200 Subject: [PATCH] winedump: Fix typo in code generation. --- tools/winedump/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/winedump/output.c b/tools/winedump/output.c index 5b0e1f52493..69c7eed3096 100644 --- a/tools/winedump/output.c +++ b/tools/winedump/output.c @@ -248,7 +248,7 @@ void output_c_preamble (void) if (globals.forward_dll) fprintf (cfile, - " DLL = LoadLibraryA(\"%s\");\n" + " hDLL = LoadLibraryA(\"%s\");\n" " TRACE(\"Forwarding DLL (%s) loaded (%%p)\\n\", hDLL);\n", globals.forward_dll, globals.forward_dll); else