]> pd.if.org Git - pdclib/blobdiff - functions/string/strcoll.c
Typo.
[pdclib] / functions / string / strcoll.c
index a139adb4728171c50fecc6d0941d3820d1eaa173..38abe3cdf7b08337df0aae1c7cfba025bed7b82e 100644 (file)
@@ -12,7 +12,7 @@
 
 int strcoll( const char * s1, const char * s2 )
 {
-    const _PDCLIB_ctype_t * ctype = _PDCLIB_lconv.ctype;
+    const struct _PDCLIB_ctype_t * ctype = _PDCLIB_lconv.ctype;
 
     while ( ( *s1 ) && ( ctype[(unsigned char)*s1].collation == ctype[(unsigned char)*s2].collation ) )
     {