Align format of timestamps

This commit is contained in:
Martin Lund 2018-11-27 23:38:21 +01:00
parent 2223662ffd
commit 42eb14dd77

View file

@ -63,7 +63,7 @@ static bool map_o_del_bs = false;
#define tio_printf(format, args...) \ #define tio_printf(format, args...) \
{ \ { \
if (tainted) putchar('\n'); \ if (tainted) putchar('\n'); \
color_printf("[tio %s] " format, current_time(), ## args); \ color_printf("[%s] " format, current_time(), ## args); \
tainted = false; \ tainted = false; \
} }