Przeglądaj źródła

Indent: Remove space in negation of expression

Signed-off-by: hfu <askfuhu@gmail.com>
Reviewed-by: Jan Friesse <jfriesse@redhat.com>
hfu 11 lat temu
rodzic
commit
b6e2c8024d
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      exec/cfg.c

+ 1 - 1
exec/cfg.c

@@ -553,7 +553,7 @@ static int nullcheck_strcmp(const char* left, const char *right)
 {
 	if (!left && right)
 		return -1;
-	if (left && ! right)
+	if (left && !right)
 		return 1;
 
 	if (!left && !right)