Make private variable static in regexec.c.
authorCraig A. Berry <craigberry@mac.com>
Fri, 26 Oct 2012 15:01:13 +0000 (10:01 -0500)
committerCraig A. Berry <craigberry@mac.com>
Fri, 26 Oct 2012 22:15:45 +0000 (17:15 -0500)
regexec.c

index c499cd2..a48643a 100644 (file)
--- a/regexec.c
+++ b/regexec.c
@@ -39,7 +39,7 @@
 
 /* At least one required character in the target string is expressible only in
  * UTF-8. */
-const char* const non_utf8_target_but_utf8_required
+static const char* const non_utf8_target_but_utf8_required
                 = "Can't match, because target string needs to be in UTF-8\n";
 
 #define NON_UTF8_TARGET_BUT_UTF8_REQUIRED(target) STMT_START { \