diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-07-05 11:39:10 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-07-05 17:15:57 +0000 |
commit | 2d57bfba36575ab3bb136324d0e0ea8c32cbd88f (patch) | |
tree | 7e4cb82de75e4fecca9ed4961c71512c627d0040 /apps | |
parent | 495c8e2a69902b37a2d41c31cbd75165152495ce (diff) | |
download | rockbox-2d57bfba36575ab3bb136324d0e0ea8c32cbd88f.tar.gz rockbox-2d57bfba36575ab3bb136324d0e0ea8c32cbd88f.zip |
portalplayer: Fix three set-but-not-used warnings.
(They show up when building with gcc494)
Change-Id: Id5e2bccf18114ed78a557ac1b369f46b4f07d042
Diffstat (limited to 'apps')
-rw-r--r-- | apps/iap/iap-lingo4.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/iap/iap-lingo4.c b/apps/iap/iap-lingo4.c index fa0196645b..903cef9378 100644 --- a/apps/iap/iap-lingo4.c +++ b/apps/iap/iap-lingo4.c | |||
@@ -1480,6 +1480,7 @@ void iap_handlepkt_mode4(const unsigned int len, const unsigned char *buf) | |||
1480 | } | 1480 | } |
1481 | break; | 1481 | break; |
1482 | } | 1482 | } |
1483 | (void)len; /* Shut up, compiler */ | ||
1483 | put_u32(&data[3], start_index+counter); | 1484 | put_u32(&data[3], start_index+counter); |
1484 | iap_send_pkt(data, 7 + strlen(data+7) + 1); | 1485 | iap_send_pkt(data, 7 + strlen(data+7) + 1); |
1485 | yield(); | 1486 | yield(); |