summaryrefslogtreecommitdiffstats
path: root/ffi.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-06-06 10:04:30 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-06-06 10:04:30 -0700
commit662d19a6e7fc9dad3ed7eafe50215028f65a456d (patch)
treeaa835e964e22727c793a568fc4cfaa55fbeb4b22 /ffi.c
parent266097d184a48385fc44f8c5c9a4bc7ba03b6294 (diff)
downloadtxr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.tar.gz
txr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.tar.bz2
txr-662d19a6e7fc9dad3ed7eafe50215028f65a456d.zip
ffi: add space in ffi-call-desc's printed rep.
* ffi.c (ffi_call_desc_print_op): Print a space between the class symbol and name so they are not run together.
Diffstat (limited to 'ffi.c')
-rw-r--r--ffi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffi.c b/ffi.c
index d943f883..25d8a8d5 100644
--- a/ffi.c
+++ b/ffi.c
@@ -4673,7 +4673,7 @@ static void ffi_call_desc_print_op(val obj, val out,
struct txr_ffi_call_desc *tfcd = ffi_call_desc(obj);
put_string(lit("#<"), out);
obj_print_impl(obj->co.cls, out, pretty, ctx);
- format(out, lit("~s ~s ~!~s>"), tfcd->name, tfcd->rettype,
+ format(out, lit(" ~s ~s ~!~s>"), tfcd->name, tfcd->rettype,
tfcd->argtypes, nao);
}