diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-10-29 23:48:50 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-10-29 23:48:50 +0900 |
commit | c76fa3141dd648b145dde2534a1ca3824ff81466 (patch) | |
tree | 6be1bc1f5ce8c0a200b65cba34987b1df2844239 /src/util.h | |
parent | ff697aa514b13cbb8105f2f3c04c1889820796d9 (diff) |
change indent from space to tab
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -12,7 +12,7 @@ #define pr(fmt, ...) fprintf(stderr, fmt, ##__VA_ARGS__) #define pr_info(fmt, ...) fprintf(stderr, "INFO:%s(): " fmt, \ - __func__, ##__VA_ARGS__) + __func__, ##__VA_ARGS__) #define pr_warn(fmt, ...) fprintf(stderr, "\x1b[1m\x1b[33m" \ "WARN:%s():\x1b[0m " fmt, \ @@ -24,8 +24,8 @@ #ifdef DEBUG #define pr_debug(fmt, ...) fprintf(stderr, "\x1b[1m\x1b[33m" \ - "DEBUG:%s():\x1b[0m " fmt, \ - __func__, ##__VA_ARGS__); + "DEBUG:%s():\x1b[0m " fmt, \ + __func__, ##__VA_ARGS__); #else #define pr_debug(fmt, ...) #endif |