diff --git a/include/json_print.h b/include/json_print.h index dbdc90e2..fe92d14c 100644 --- a/include/json_print.h +++ b/include/json_print.h @@ -57,20 +57,21 @@ void print_nl(void); { \ print_color_##type_name(t, COLOR_NONE, key, fmt, value); \ } -_PRINT_FUNC(int, int); -_PRINT_FUNC(s64, int64_t); -_PRINT_FUNC(bool, bool); -_PRINT_FUNC(null, const char*); -_PRINT_FUNC(string, const char*); -_PRINT_FUNC(uint, unsigned int); -_PRINT_FUNC(u64, uint64_t); -_PRINT_FUNC(hhu, unsigned char); -_PRINT_FUNC(hu, unsigned short); -_PRINT_FUNC(hex, unsigned int); -_PRINT_FUNC(0xhex, unsigned long long); -_PRINT_FUNC(luint, unsigned long); -_PRINT_FUNC(lluint, unsigned long long); -_PRINT_FUNC(float, double); + +_PRINT_FUNC(int, int) +_PRINT_FUNC(s64, int64_t) +_PRINT_FUNC(bool, bool) +_PRINT_FUNC(null, const char*) +_PRINT_FUNC(string, const char*) +_PRINT_FUNC(uint, unsigned int) +_PRINT_FUNC(u64, uint64_t) +_PRINT_FUNC(hhu, unsigned char) +_PRINT_FUNC(hu, unsigned short) +_PRINT_FUNC(hex, unsigned int) +_PRINT_FUNC(0xhex, unsigned long long) +_PRINT_FUNC(luint, unsigned long) +_PRINT_FUNC(lluint, unsigned long long) +_PRINT_FUNC(float, double) #undef _PRINT_FUNC #endif /* _JSON_PRINT_H_ */