From 8d0e61afcaf35e7694f2db7cb5fbb81980f76022 Mon Sep 17 00:00:00 2001 From: Dave Vasilevsky Date: Sat, 23 Jan 2010 00:57:50 -0500 Subject: [PATCH] suppress unused var warning --- write.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/write.c b/write.c index 0d4b3a5..150d2ec 100644 --- a/write.c +++ b/write.c @@ -293,7 +293,7 @@ static void block_queue_free(int type, void *p) { #pragma mark ENCODING static void *encode_thread(void *arg) { - int thnum = (uintptr_t)arg; + int __attribute__((unused)) thnum = (uintptr_t)arg; while (true) { io_block_t *ib;