summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-11-07 06:56:51 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-11-07 06:56:51 -0800
commit472b34daf3787e0a05891a1f1cdfc89316b8fc8b (patch)
tree906f7bb5aa916e9688b800929df84cacedf8ff24 /ffi.c
parentb0828e2dd7540651aa6863c8bc7814d86ad9401e (diff)
downloadtxr-472b34daf3787e0a05891a1f1cdfc89316b8fc8b.tar.gz
txr-472b34daf3787e0a05891a1f1cdfc89316b8fc8b.tar.bz2
txr-472b34daf3787e0a05891a1f1cdfc89316b8fc8b.zip
Fix wrong uses of ~s for function name string.
* ffi.c (make_ffi_type_enum): Use ~a for function name rather than ~s because it's a string which is quoted under ~s. * lib.c (chk_xalloc, string_extend, find_symbol, intern_fallback): Likewise. * stream.c (open_process, run): Likewise. * sysif.c (exec_wrap, setgroups_wrap, dlclose_wrap): Likewise.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/ffi.c b/ffi.c
index 2e67192e..93d6a2a2 100644
--- a/ffi.c
+++ b/ffi.c
@@ -3158,13 +3158,13 @@ static val make_ffi_type_enum(val syntax, val enums,
if (symbolp(en)) {
val sym = en;
if (!bindable(sym))
- uw_throwf(error_s, lit("~s: ~s member ~s isn't a bindable symbol"),
+ uw_throwf(error_s, lit("~a: ~s member ~s isn't a bindable symbol"),
self, syntax, sym, nao);
if (cur == INT_MAX)
- uw_throwf(error_s, lit("~s: ~s overflow at member ~s"),
+ uw_throwf(error_s, lit("~a: ~s overflow at member ~s"),
self, syntax, sym, nao);
if (gethash(num_sym, sym))
- uw_throwf(error_s, lit("~s: ~s duplicate member ~s"),
+ uw_throwf(error_s, lit("~a: ~s duplicate member ~s"),
self, syntax, sym, nao);
sethash(num_sym, sym, nn = num(++cur));
sethash(sym_num, nn, sym);
@@ -3177,22 +3177,22 @@ static val make_ffi_type_enum(val syntax, val enums,
val sym = car(en);
val n;
if (!bindable(sym))
- uw_throwf(error_s, lit("~s: ~s member ~s isn't a bindable symbol"),
+ uw_throwf(error_s, lit("~a: ~s member ~s isn't a bindable symbol"),
self, syntax, sym, nao);
if (gethash(num_sym, sym))
- uw_throwf(error_s, lit("~s: ~s duplicate member ~s"),
+ uw_throwf(error_s, lit("~a: ~s duplicate member ~s"),
self, syntax, sym, nao);
n = ffi_eval_expr(expr, shadow_menv, enum_env);
if (!integerp(n)) {
- uw_throwf(error_s, lit("~s: ~s member ~s value ~s not integer"),
+ uw_throwf(error_s, lit("~a: ~s member ~s value ~s not integer"),
self, syntax, n, nao);
}
cur = c_num(n);
if (cur > INT_MAX)
- uw_throwf(error_s, lit("~s: ~s member ~s value ~s too large"),
+ uw_throwf(error_s, lit("~a: ~s member ~s value ~s too large"),
self, syntax, n, nao);
sethash(num_sym, sym, nn = num(cur));
sethash(sym_num, nn, sym);