Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/GStreamer/orc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Schleef <ds@schleef.org>2011-10-15 22:52:18 +0400
committerDavid Schleef <ds@schleef.org>2011-10-15 22:52:18 +0400
commit31c75253f3299f5af62970d3a3093201d726bfbf (patch)
tree46cc44975642498234ad8f99524321f2ce557000
parent574ee1ee5025d9941e44238e846f6074fbdf2e87 (diff)
test: fix unused variable warning
-rw-r--r--orc-test/orcarray.c2
1 files changed, 1 insertions, 1 deletions
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;