winedump: Fix a copy/paste typo.

This commit is contained in:
Dmitry Timoshkov 2006-11-26 16:04:33 +08:00 committed by Alexandre Julliard
parent 5b0eb0998a
commit d8725b8850
1 changed files with 2 additions and 2 deletions

View File

@ -454,11 +454,11 @@ static int dump_lnk_fd(int fd)
return 0; return 0;
} }
int dump_lnk(const char *emf) int dump_lnk(const char *lnk)
{ {
int fd; int fd;
fd = open(emf,O_RDONLY); fd = open(lnk,O_RDONLY);
if (fd<0) if (fd<0)
return -1; return -1;
dump_lnk_fd(fd); dump_lnk_fd(fd);