Commit 2885555b authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedump: Fixed signature for dumping MDMP files.

parent cf6e0d82
......@@ -66,7 +66,7 @@ enum FileSig get_kind_mdmp(void)
pdw = PRD(0, sizeof(DWORD));
if (!pdw) {printf("Can't get main signature, aborting\n"); return SIG_UNKNOWN;}
if (*pdw == 0x444D /* "MDMP" */) return SIG_MDMP;
if (*pdw == 0x504D444D /* "MDMP" */) return SIG_MDMP;
return SIG_UNKNOWN;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment