From 2d57bfba36575ab3bb136324d0e0ea8c32cbd88f Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Sun, 5 Jul 2020 11:39:10 -0400 Subject: portalplayer: Fix three set-but-not-used warnings. (They show up when building with gcc494) Change-Id: Id5e2bccf18114ed78a557ac1b369f46b4f07d042 --- apps/iap/iap-lingo4.c | 1 + 1 file changed, 1 insertion(+) (limited to 'apps/iap/iap-lingo4.c') 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(); -- cgit