From be2410a046c2c1841ab6422da67bdcb8cb081903 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Thu, 26 May 2016 09:26:09 +0100 Subject: [PATCH] src/c-types-impl.lisp: Fix name of `wchar_t'. Organization: Straylight/Edgeware From: Mark Wooding Not sure how this ended up being wrong. --- src/c-types-impl.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c-types-impl.lisp b/src/c-types-impl.lisp index fe75d7a..a27b30f 100644 --- a/src/c-types-impl.lisp +++ b/src/c-types-impl.lisp @@ -225,7 +225,7 @@ (define-simple-c-type void "void" :export t) (define-simple-c-type char "char" :export t) (define-simple-c-type (unsigned-char uchar) "unsigned char" :export t) (define-simple-c-type (signed-char schar) "signed char" :export t) -(define-simple-c-type wchar-t "wchar-t" :export t) +(define-simple-c-type wchar-t "wchar_t" :export t) (define-simple-c-type (int signed signed-int sint) "int" :export t) (define-simple-c-type (unsigned unsigned-int uint) "unsigned" :export t) -- [mdw]