Jelajahi Sumber

Indent: Remove space in negation of expression

Signed-off-by: hfu <askfuhu@gmail.com>
Reviewed-by: Jan Friesse <jfriesse@redhat.com>
hfu 11 tahun lalu
induk
melakukan
b6e2c8024d
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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)