From: David Schleef Date: Sat, 15 Oct 2011 18:52:18 +0000 (-0700) Subject: test: fix unused variable warning X-Git-Tag: orc-0.4.17~110 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=31c75253f3299f5af62970d3a3093201d726bfbf;p=platform%2Fupstream%2Forc.git test: fix unused variable warning --- diff --git a/orc-test/orcarray.c b/orc-test/orcarray.c index 6e9c70f..729593b 100644 --- a/orc-test/orcarray.c +++ b/orc-test/orcarray.c @@ -42,7 +42,7 @@ orc_array_new (int n, int m, int element_size, int misalignment, void *data; #ifndef USE_MMAP #ifdef HAVE_POSIX_MEMALIGN - int ret; + int ret ORC_GNUC_UNUSED; #endif #endif int offset;