Module: wine Branch: master Commit: d8725b8850371d21f2735f2f3a9f177987dc5537 URL: http://source.winehq.org/git/wine.git/?a=commit;h=d8725b8850371d21f2735f2f3a...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Sun Nov 26 16:04:33 2006 +0800
winedump: Fix a copy/paste typo.
---
tools/winedump/lnk.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
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 @@ static int dump_lnk_fd(int fd) 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);