Clean up indentation

This commit is contained in:
Martin Lund 2022-09-18 19:20:12 +02:00
parent e54a13827b
commit ce3101a380
4 changed files with 118 additions and 112 deletions

View file

@ -35,7 +35,8 @@ extern char ansi_format[];
#define ansi_printf(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (option.color < 0) \
fprintf (stdout, "\r" format "\r\n", ## args); \
else \
@ -45,7 +46,8 @@ extern char ansi_format[];
#define ansi_error_printf(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (option.color < 0) \
fprintf (stderr, "\r" format "\r\n", ## args); \
else \
@ -56,7 +58,8 @@ extern char ansi_format[];
#define ansi_printf_raw(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (option.color < 0) \
fprintf (stdout, format, ## args); \
else \
@ -66,7 +69,8 @@ extern char ansi_format[];
#define tio_warning_printf(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (print_tainted) \
putchar('\n'); \
if (option.color < 0) \
@ -78,7 +82,8 @@ extern char ansi_format[];
#define tio_printf(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (print_tainted) \
putchar('\n'); \
ansi_printf("[%s] " format, timestamp_current_time(), ## args); \
@ -88,7 +93,8 @@ extern char ansi_format[];
#define tio_printf_raw(format, args...) \
{ \
if (!option.mute) { \
if (!option.mute) \
{ \
if (print_tainted) \
putchar('\n'); \
ansi_printf_raw("[%s] " format, timestamp_current_time(), ## args); \