summaryrefslogtreecommitdiffstats
path: root/unwind.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-12 22:48:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-12 22:48:15 -0800
commit673d5f3b84d276fb29233d6a3f485ccfe330be13 (patch)
treeb1447ce861394a8b5873589ecb03659f2c5506fe /unwind.c
parent8367c03ef07473cff4f1b6f0645e1ce9ae17c94c (diff)
downloadtxr-673d5f3b84d276fb29233d6a3f485ccfe330be13.tar.gz
txr-673d5f3b84d276fb29233d6a3f485ccfe330be13.tar.bz2
txr-673d5f3b84d276fb29233d6a3f485ccfe330be13.zip
Continuing wchar_t conversion. Making sure all stdio calls
use wide character functions so that there is no illicit mixing. (But the goal is to replace this usage with txr streams).
Diffstat (limited to 'unwind.c')
-rw-r--r--unwind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unwind.c b/unwind.c
index f209f71b..43c93184 100644
--- a/unwind.c
+++ b/unwind.c
@@ -264,7 +264,7 @@ obj_t *uw_errorf(const wchar_t *fmt, ...)
abort();
}
-obj_t *uw_throwcf(obj_t *sym, const char *fmt, ...)
+obj_t *uw_throwcf(obj_t *sym, const wchar_t *fmt, ...)
{
va_list vl;
obj_t *stream = make_string_output_stream();
@@ -277,7 +277,7 @@ obj_t *uw_throwcf(obj_t *sym, const char *fmt, ...)
abort();
}
-obj_t *uw_errorcf(const char *fmt, ...)
+obj_t *uw_errorcf(const wchar_t *fmt, ...)
{
va_list vl;
obj_t *stream = make_string_output_stream();