[Pcre-svn] [1070] code/trunk/pcre_compile.c: pcre32: compile…

Startseite
Nachricht löschen
Autor: Subversion repository
Datum:  
To: pcre-svn
Betreff: [Pcre-svn] [1070] code/trunk/pcre_compile.c: pcre32: compile: Fix signed/ unsigned mismatch in find_recurse
Revision: 1070
          http://vcs.pcre.org/viewvc?view=rev&revision=1070
Author:   chpe
Date:     2012-10-16 16:54:33 +0100 (Tue, 16 Oct 2012)


Log Message:
-----------
pcre32: compile: Fix signed/unsigned mismatch in find_recurse

Modified Paths:
--------------
    code/trunk/pcre_compile.c


Modified: code/trunk/pcre_compile.c
===================================================================
--- code/trunk/pcre_compile.c    2012-10-16 15:54:29 UTC (rev 1069)
+++ code/trunk/pcre_compile.c    2012-10-16 15:54:33 UTC (rev 1070)
@@ -2197,7 +2197,7 @@
 {
 for (;;)
   {
-  register int c = *code;
+  register pcre_uchar c = *code;
   if (c == OP_END) return NULL;
   if (c == OP_RECURSE) return code;