]> granicus.if.org Git - procps-ng/commitdiff
top: eliminate warnings for '-Wmisleading-indentation'
authorJim Warner <james.warner@comcast.net>
Sat, 8 Jan 2022 06:00:00 +0000 (00:00 -0600)
committerCraig Small <csmall@dropbear.xyz>
Thu, 13 Jan 2022 08:34:39 +0000 (19:34 +1100)
Signed-off-by: Jim Warner <james.warner@comcast.net>
top/top.h

index 20c4a7af51687ae304ca44530599d422e29ed629..07919afab9efa9ac75b2651dc2b9f5bd98223653 100644 (file)
--- a/top/top.h
+++ b/top/top.h
@@ -464,7 +464,8 @@ typedef struct WIN_t {
       const int _len = snprintf(_str, sizeof(_str), fmt, ## arg); \
       if (Batch) { \
          char *_eol = _str + (_len < 0 ? 0 : (size_t)_len >= sizeof(_str) ? sizeof(_str)-1 : (size_t)_len); \
-         while (_eol > _str && _eol[-1] == ' ') _eol--; *_eol = '\0'; putp(_str); } \
+         while (_eol > _str && _eol[-1] == ' ') _eol--; \
+         *_eol = '\0'; putp(_str); } \
       else if (Pseudo_row >= 0 && Pseudo_row < Screen_rows) { \
          char *_ptr = &Pseudo_screen[Pseudo_row++ * ROWMAXSIZ]; \
          if (!strcmp(_ptr, _str)) putp("\n"); \