diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-02-28 15:35:20 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-02-28 15:35:20 -0500 |
| commit | ae1e1ce6b9644bbd4fd01c2a108675778512c1d3 (patch) | |
| tree | c14e3108123d166a3e441d4559b3461b44cbe9db /src | |
| parent | 87ad3ba0e87277be78259af147359c97e7f4efc3 (diff) | |
fix prototype in cast
Diffstat (limited to 'src')
| -rw-r--r-- | src/nonstd/__load_locale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nonstd/__load_locale.c b/src/nonstd/__load_locale.c index 193aa333..2233e6b8 100644 --- a/src/nonstd/__load_locale.c +++ b/src/nonstd/__load_locale.c @@ -1,4 +1,4 @@ #include <nonstd/locale.h> #define __load_locale(_loc, _mask, _name) \ - ((char * (*)(struct __locale *, int, const char *))__libc(LOAD_LOCALE))(_loc, _mask, _name) + ((char * (*)(struct __locale_t *, int, const char *))__libc(LOAD_LOCALE))(_loc, _mask, _name) |
