From 35389a904fc19cb404c068ac85a18a184de457f5 Mon Sep 17 00:00:00 2001 From: Chris Yuan Date: Tue, 16 Aug 2022 16:31:18 +0800 Subject: [PATCH] replace tab to blank --- src/obclient/client.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/obclient/client.cpp b/src/obclient/client.cpp index db24981..2ea089b 100644 --- a/src/obclient/client.cpp +++ b/src/obclient/client.cpp @@ -69,7 +69,7 @@ char *my_readline(const char *prompt) bool is_exit_command(const char *cmd) { return 0 == strncasecmp("exit", cmd, 4) || 0 == strncasecmp("bye", cmd, 3) || - 0 == strncasecmp("\\q", cmd, 2) ; + 0 == strncasecmp("\\q", cmd, 2) ; } int init_unix_sock(const char *unix_sock_path) -- GitLab