Skip to content

Commit 7afc8a6

Browse files
committed
clang format
Signed-off-by: zhaozhao.zz <[email protected]>
1 parent bc2757d commit 7afc8a6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/server.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5863,7 +5863,8 @@ sds genValkeyInfoString(dict *section_dict, int all_sections, int everything) {
58635863
server.stat_last_eviction_exceeded_time ? (long long)elapsedUs(server.stat_last_eviction_exceeded_time) : 0;
58645864
long long current_active_defrag_time =
58655865
server.stat_last_active_defrag_time ? (long long)elapsedUs(server.stat_last_active_defrag_time) : 0;
5866-
char *paused_actions = server.paused_actions & PAUSE_ACTION_CLIENT_ALL ? "all" : server.paused_actions & PAUSE_ACTION_CLIENT_WRITE ? "write" : "none";
5866+
char *paused_actions = server.paused_actions & PAUSE_ACTION_CLIENT_ALL ? "all" : server.paused_actions & PAUSE_ACTION_CLIENT_WRITE ? "write"
5867+
: "none";
58675868

58685869
if (sections++) info = sdscat(info, "\r\n");
58695870
info = sdscatprintf(

0 commit comments

Comments
 (0)