diff options
-rw-r--r-- | lib.h | 4 | ||||
-rw-r--r-- | stream.c | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -170,8 +170,8 @@ INLINE int is_chr(val obj) { return tag(obj) == TAG_CHR; } INLINE int is_lit(val obj) { return tag(obj) == TAG_LIT; } INLINE type_t type(val obj) -{ - return tag(obj) ? (type_t) tag(obj) : obj->t.type; +{ + return tag(obj) ? (type_t) tag(obj) : obj->t.type; } INLINE val auto_str(const wchar_t *str) @@ -628,7 +628,7 @@ static struct fmt fmt_tab[] = { { sizeof(cnum), "%lld", "%llo", "%llx", "%llX" }, { sizeof(cnum), "%Ld", "%Lo", "%Lx", "%llX" }, { sizeof(cnum), "%qd", "%qo", "%qx", "%qX", }, - { sizeof(cnum), "%I64d", "%I64o", "%I64x", "%I64X" }, + { sizeof(cnum), "%I64d", "%I64o", "%I64x", "%I64X" }, { 0, 0, 0, 0, 0 } }; |