Commit d8725b88 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

winedump: Fix a copy/paste typo.

parent 5b0eb099
......@@ -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);
......
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