Revision: 1136
http://vcs.pcre.org/viewvc?view=rev&revision=1136
Author: chpe
Date: 2012-10-18 19:35:41 +0100 (Thu, 18 Oct 2012)
Log Message:
-----------
pcregrep: Fix unused variable warning
When compiling with neither libz nor libbz2 support.
Modified Paths:
--------------
code/trunk/pcregrep.c
Modified: code/trunk/pcregrep.c
===================================================================
--- code/trunk/pcregrep.c 2012-10-18 18:35:37 UTC (rev 1135)
+++ code/trunk/pcregrep.c 2012-10-18 18:35:41 UTC (rev 1136)
@@ -1487,6 +1487,8 @@
plain file. However, if a .bz2 file isn't actually bzipped, the first read will
fail. */
+(void)frtype;
+
#ifdef SUPPORT_LIBZ
if (frtype == FR_LIBZ)
{