winedump: Fix a copy/paste typo.
This commit is contained in:
parent
5b0eb0998a
commit
d8725b8850
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue