aboutsummaryrefslogtreecommitdiff
path: root/common/debug.c
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2022-05-29 11:23:29 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2022-05-29 11:23:29 +0300
commite148f38dc937c34b222ba8df8612b3fa2b6bc349 (patch)
treec51f045c6632b2073cb0e3183bd9d3b559ccd228 /common/debug.c
parent360c18fcbe228220e5c9799fb30b2032982c06cf (diff)
downloadkmi-e148f38dc937c34b222ba8df8612b3fa2b6bc349.tar.gz
kmi-e148f38dc937c34b222ba8df8612b3fa2b6bc349.zip
modify formatting rules
Diffstat (limited to 'common/debug.c')
-rw-r--r--common/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/debug.c b/common/debug.c
index ae56ab1..af35031 100644
--- a/common/debug.c
+++ b/common/debug.c
@@ -174,8 +174,8 @@ static size_t __integral_val(ssize_t value, size_t base, size_t flags,
size_t ret = 0;
signed char c = 0;
-#define handle_type(x) \
- c = (x)value % (x)base; \
+#define handle_type(x) \
+ c = (x)value % (x)base; \
value = (x)value / (x)base;
if (!is_set(flags, UNSIGN_FLAG)) {