diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-02 13:38:32 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-11-02 13:38:32 +0000 |
commit | e9982c06c7838c496f207e49f8a79aa9dbe6e1af (patch) | |
tree | a31e4437c5275b0a00a4a1da0610f9b1ee65108c /ext/mbstring/mbregex.c | |
parent | d530f23a4fa04e4e503a8fc5d8ab30d29bb34bfc (diff) | |
download | php-git-e9982c06c7838c496f207e49f8a79aa9dbe6e1af.tar.gz |
Reduced compiler warnings
Diffstat (limited to 'ext/mbstring/mbregex.c')
-rw-r--r-- | ext/mbstring/mbregex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mbstring/mbregex.c b/ext/mbstring/mbregex.c index 1908c687cc..ae42042f72 100644 --- a/ext/mbstring/mbregex.c +++ b/ext/mbstring/mbregex.c @@ -496,7 +496,7 @@ enum regexpcode wordbeg, /* Succeeds if at word beginning. */ wordend, /* Succeeds if at word end. */ wordbound, /* Succeeds if at a word boundary. */ - notwordbound,/* Succeeds if not at a word boundary. */ + notwordbound /* Succeeds if not at a word boundary. */ }; |