From d06c35c6603859a575993ee3dac5244c529e09f5 Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Thu, 9 Aug 2012 02:29:04 +0000
Subject: Fix warnings: -Wshadow -Wpointer-arith -Wcast-align
 -Wstrict-prototypes -Wmissing-prototypes.

git-svn-id: http://svn.drobilla.net/zix/trunk@72 df6676b4-ccc9-40e5-b5d6-7c4628a128e3
---
 src/strindex.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

(limited to 'src/strindex.c')

diff --git a/src/strindex.c b/src/strindex.c
index 886d261..bd97db5 100644
--- a/src/strindex.c
+++ b/src/strindex.c
@@ -190,8 +190,11 @@ ZIX_API
 ZixStatus
 zix_strindex_find(ZixStrindex* t, const char* p, char** match)
 {
-	ZixStrindexNode* n      = t->root;
-	const char*      orig_p = p;
+#ifndef NDEBUG
+	const char* orig_p = p;
+#endif
+
+	ZixStrindexNode* n = t->root;
 	size_t           child_i;
 
 	*match = NULL;
-- 
cgit v1.2.1