diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 17:29:56 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-17 17:29:56 -0500 |
| commit | dbd7502a1dcee6b99434f39393cb356efa542ddc (patch) | |
| tree | b8ae469719326ba2c3daf019e545c4713ab0235f /builtins/functions.c | |
| parent | 5c49314ed4380f4e12a05888f635caa9af4a7cf4 (diff) | |
Fix up some builtins
Diffstat (limited to 'builtins/functions.c')
| -rw-r--r-- | builtins/functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/functions.c b/builtins/functions.c index 2892107a..780fb6dc 100644 --- a/builtins/functions.c +++ b/builtins/functions.c @@ -86,7 +86,7 @@ public CORD generic_cord(const void *obj, bool colorize, const TypeInfo *type) case TableInfo: return Table_cord(obj, colorize, type); case CustomInfo: if (!type->CustomInfo.cord) - builtin_fail("No cord function provided for type: %s!\n", type->name); + builtin_fail("No cord function provided for type!\n"); return type->CustomInfo.cord(obj, colorize, type); default: errx(1, "Invalid type tag: %d", type->tag); } |
