summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafaël Carré <funman@videolan.org>2013-06-13 18:56:23 +0200
committerRafaël Carré <funman@videolan.org>2013-06-13 18:56:23 +0200
commitab56afefc13ccdce382183b122a6be7afe0e4fa0 (patch)
tree5d565bc6d47e41d1194cb86c500589ea8cf58993
parentb4ca244af29f31eda57fdc5cd5467d9ed4f5ed6a (diff)
downloadrockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.tar.gz
rockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.zip
test_mem: silence -Wunused-but-set-variable warning
Change-Id: I4a14c8b0cf1a8c822166ce01087b31c06722d8ae
-rw-r--r--apps/plugins/test_mem.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c
index a4b45fb32f..7a97f518cc 100644
--- a/apps/plugins/test_mem.c
+++ b/apps/plugins/test_mem.c
@@ -132,6 +132,7 @@ static void read_test(volatile int *buf, int buf_size, int loop_cnt)
132 x = buf[j+4]; 132 x = buf[j+4];
133 } 133 }
134 } 134 }
135 (void)x;
135#endif 136#endif
136} 137}
137 138