]> granicus.if.org Git - php/commitdiff
-Fix warnings (fixed all?)
authorMarcus Boerger <helly@php.net>
Sun, 4 Aug 2002 18:59:19 +0000 (18:59 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 4 Aug 2002 18:59:19 +0000 (18:59 +0000)
ext/mbstring/mbregex.c
ext/mbstring/mbstring.c

index 64dd8f20fa9e300d4d9b1b48d41a6fcafe8d503c..ee8966283f67d361fbb2a32880bb54080465e4c5 100644 (file)
@@ -647,7 +647,7 @@ print_mbc(c)
 /* Make sure we have at least N more bytes of space in buffer.  */
 #define GET_BUFFER_SPACE(n)                                            \
   do {                                                                 \
-    while (b - bufp->buffer + (n) >= bufp->allocated)                  \
+    while (b - bufp->buffer + (size_t)(n) >= (size_t)bufp->allocated)                  \
       EXTEND_BUFFER;                                                   \
   } while (0)
 
@@ -2401,7 +2401,7 @@ re_compile_pattern(pattern, size, bufp)
          GET_UNSIGNED_NUMBER(c1);
          if (!ISDIGIT(c)) PATUNFETCH;
 
-       if (9 < c1 && c1 >= regnum) {
+       if (9 < c1 && c1 >= (unsigned int)regnum) {
            /* need to get octal */
          c = scan_oct(p0, 3, &numlen) & 0xff;
          p = p0 + numlen;
@@ -3881,7 +3881,7 @@ re_match(bufp, string_arg, size, pos, regs)
          register unsigned char *d2, *dend2;
 
          /* Check if there's corresponding group */
-         if (regno >= num_regs) goto fail;
+         if (regno >= (int)num_regs) goto fail;
          /* Check if corresponding group is still open */
          if (IS_ACTIVE(reg_info[regno])) goto fail;
 
index cf4e7f2bc995347fe40f0cef7c09ef2b9f5ae79d..3edc56cbf30463c53ab6050fd0bd7d435ce7b279 100644 (file)
@@ -138,7 +138,7 @@ static const unsigned char second_args_force_ref[]    = { 2, BYREF_NONE, BYREF_F
 static const unsigned char third_argument_force_ref[] = { 3, BYREF_NONE, BYREF_NONE, BYREF_FORCE };
 #endif
 
-static const sapi_post_entry mbstr_post_entries[] = {
+static sapi_post_entry mbstr_post_entries[] = {
        { DEFAULT_POST_CONTENT_TYPE, sizeof(DEFAULT_POST_CONTENT_TYPE)-1, sapi_read_standard_form_data, php_mbstr_post_handler },
        { MULTIPART_CONTENT_TYPE,    sizeof(MULTIPART_CONTENT_TYPE)-1,    NULL,                         rfc1867_post_handler },
        { NULL, 0, NULL, NULL }
@@ -3371,7 +3371,7 @@ PHP_FUNCTION(mb_get_info)
 }
 /* }}} */
 
-PHPAPI int mbstr_encoding_translation(TSRMLS_D)
+PHPAPI int mbstr_encoding_translation(TSRMLS_D) 
 {
        return MBSTRG(encoding_translation);
 }