diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-27 17:26:51 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-27 17:26:51 -0400 |
| commit | 3c52a756339a2d96824d21a7d3ad5de7fc1085a0 (patch) | |
| tree | e5299a25ebb76186d6372b700710d7c8c7fe0728 /src/stdlib/metamethods.c | |
| parent | 2186e84de0c0fd47ba48eaa35f74ea2754c3b81f (diff) | |
Deprecate custom printf specifiers in favor of print() function that
uses _Generic() to generically convert any value to a string or print as
a string.
Diffstat (limited to 'src/stdlib/metamethods.c')
| -rw-r--r-- | src/stdlib/metamethods.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stdlib/metamethods.c b/src/stdlib/metamethods.c index c0e11cfc..a7622e0b 100644 --- a/src/stdlib/metamethods.c +++ b/src/stdlib/metamethods.c @@ -111,14 +111,14 @@ __attribute__((noreturn)) public void cannot_serialize(const void*, FILE*, Table_t*, const TypeInfo_t *type) { Text_t typestr = generic_as_text(NULL, false, type); - fail("Values of type %k cannot be serialized or deserialized!", &typestr); + fail("Values of type ", typestr, " cannot be serialized or deserialized!"); } __attribute__((noreturn)) public void cannot_deserialize(FILE*, void*, Array_t*, const TypeInfo_t *type) { Text_t typestr = generic_as_text(NULL, false, type); - fail("Values of type %k cannot be serialized or deserialized!", &typestr); + fail("Values of type ", typestr, " cannot be serialized or deserialized!"); } // vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0 |
