From 662d19a6e7fc9dad3ed7eafe50215028f65a456d Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Sun, 6 Jun 2021 10:04:30 -0700 Subject: 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. --- ffi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ffi.c') 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); } -- cgit v1.2.3