diff options
| author | Rafaël Carré <funman@videolan.org> | 2013-06-13 18:56:23 +0200 |
|---|---|---|
| committer | Rafaël Carré <funman@videolan.org> | 2013-06-13 18:56:23 +0200 |
| commit | ab56afefc13ccdce382183b122a6be7afe0e4fa0 (patch) | |
| tree | 5d565bc6d47e41d1194cb86c500589ea8cf58993 | |
| parent | b4ca244af29f31eda57fdc5cd5467d9ed4f5ed6a (diff) | |
| download | rockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.zip rockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.tar.gz rockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.tar.bz2 rockbox-ab56afefc13ccdce382183b122a6be7afe0e4fa0.tar.xz | |
test_mem: silence -Wunused-but-set-variable warning
Change-Id: I4a14c8b0cf1a8c822166ce01087b31c06722d8ae
| -rw-r--r-- | apps/plugins/test_mem.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/plugins/test_mem.c b/apps/plugins/test_mem.c index a4b45fb..7a97f51 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) x = buf[j+4]; } } + (void)x; #endif } |