summaryrefslogtreecommitdiffstats
path: root/apps/plugins
diff options
context:
space:
mode:
authorSebastian Leonhardt <sebastian.leonhardt@web.de>2019-08-11 22:57:08 +0200
committerSebastian Leonhardt <sebastian.leonhardt@web.de>2019-08-11 22:57:08 +0200
commit3b75f98700c01266c1d3477767114e41325024c9 (patch)
treec384c3bc11ec33a758e1d5a99406100657b131fb /apps/plugins
parent5c701b02809ffeec2e9de50e89995dbb85cd7a62 (diff)
downloadrockbox-3b75f98700c01266c1d3477767114e41325024c9.tar.gz
rockbox-3b75f98700c01266c1d3477767114e41325024c9.zip
Windows shortcuts: remove warnings
Change-Id: I987cbf14da2f320ddbe3190b48ba5f8006d2ea3f
Diffstat (limited to 'apps/plugins')
-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,
r = read_lword(fd, &size);
if (!r) return false;
if (size!=0x4c) { /* header size MUST be 76 bytes */
- DEBUGF("unexpected header size 0x%08lx (must be 0x0000004c)\n", size);
+ DEBUGF("unexpected header size 0x%08x (must be 0x0000004c)\n", size);
return false;
}