commit | d8725b8850371d21f2735f2f3a9f177987dc5537 | [log] [tgz] |
---|---|---|
author | Dmitry Timoshkov <dmitry@codeweavers.com> | Sun Nov 26 16:04:33 2006 +0800 |
committer | Alexandre Julliard <julliard@winehq.org> | Mon Nov 27 13:45:12 2006 +0100 |
tree | 8a16df3e44c0841d6939498ab8d8e73cb4a1b2c6 | |
parent | 5b0eb0998afd7452568cfebe563b67e4b82bb40d [diff] |
winedump: Fix a copy/paste typo.
diff --git a/tools/winedump/lnk.c b/tools/winedump/lnk.c index f4669c1..78b2c45 100644 --- a/tools/winedump/lnk.c +++ b/tools/winedump/lnk.c
@@ -454,11 +454,11 @@ return 0; } -int dump_lnk(const char *emf) +int dump_lnk(const char *lnk) { int fd; - fd = open(emf,O_RDONLY); + fd = open(lnk,O_RDONLY); if (fd<0) return -1; dump_lnk_fd(fd);