From b3b47892170124cf28a2cfb5ff4aeb227989aa21 Mon Sep 17 00:00:00 2001 From: Martin Baute Date: Mon, 11 Apr 2016 07:30:26 +0200 Subject: [PATCH] Typo. --- functions/string/strcoll.c | 2 +- functions/string/strxfrm.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 ) { -- 2.40.0