From: Martin Baute Date: Mon, 11 Apr 2016 05:30:26 +0000 (+0200) Subject: Typo. X-Git-Url: https://pd.if.org/git/?p=pdclib;a=commitdiff_plain;h=b3b47892170124cf28a2cfb5ff4aeb227989aa21 Typo. --- diff --git a/functions/string/strcoll.c b/functions/string/strcoll.c index a139adb..38abe3c 100644 --- a/functions/string/strcoll.c +++ b/functions/string/strcoll.c @@ -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 ) ) { diff --git a/functions/string/strxfrm.c b/functions/string/strxfrm.c index c17d867..29094e5 100644 --- a/functions/string/strxfrm.c +++ b/functions/string/strxfrm.c @@ -12,7 +12,7 @@ size_t strxfrm( char * _PDCLIB_restrict s1, const char * _PDCLIB_restrict s2, size_t n ) { - const _PDCLIB_ctype_t * ctype = _PDCLIB_lconv.ctype; + const struct _PDCLIB_ctype_t * ctype = _PDCLIB_lconv.ctype; size_t len = strlen( s2 ); if ( len < n ) {