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/iap | |
parent | 495c8e2a69902b37a2d41c31cbd75165152495ce (diff) |
portalplayer: Fix three set-but-not-used warnings.
(They show up when building with gcc494)
Change-Id: Id5e2bccf18114ed78a557ac1b369f46b4f07d042
Diffstat (limited to 'apps/iap')
-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) } break; } + (void)len; /* Shut up, compiler */ put_u32(&data[3], start_index+counter); iap_send_pkt(data, 7 + strlen(data+7) + 1); yield(); |