]> git.ipfire.org Git - thirdparty/cups.git/blobdiff - cups/string.c
Import CUPS trunk (1.4svn) r7116.
[thirdparty/cups.git] / cups / string.c
index 40f3d7fd203a9a8473cfb2adcf4b7e3afb4cdee8..a20d0c507ac11e7d4ce95bd0773b64bd579c0f3f 100644 (file)
@@ -613,7 +613,7 @@ _cups_strcasecmp(const char *s,     /* I - First string */
 #ifndef HAVE_STRNCASECMP
 int                                    /* O - Result of comparison (-1, 0, or 1) */
 _cups_strncasecmp(const char *s,       /* I - First string */
-                 vconst char *t,       /* I - Second string */
+                  const char *t,       /* I - Second string */
                  size_t     n)         /* I - Maximum number of characters to compare */
 {
   while (*s != '\0' && *t != '\0' && n > 0)