summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/windows_lnk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/windows_lnk.c b/apps/plugins/windows_lnk.c
index 6ef1a6a3ac..8b89f7f25b 100644
--- a/apps/plugins/windows_lnk.c
+++ b/apps/plugins/windows_lnk.c
@@ -119,7 +119,7 @@ static bool extract_link_destination(const int fd,
119 r = read_lword(fd, &size); 119 r = read_lword(fd, &size);
120 if (!r) return false; 120 if (!r) return false;
121 if (size!=0x4c) { /* header size MUST be 76 bytes */ 121 if (size!=0x4c) { /* header size MUST be 76 bytes */
122 DEBUGF("unexpected header size 0x%08lx (must be 0x0000004c)\n", size); 122 DEBUGF("unexpected header size 0x%08x (must be 0x0000004c)\n", size);
123 return false; 123 return false;
124 } 124 }
125 125