Explorar o código

Indent: Remove space in negation of expression

Signed-off-by: hfu <askfuhu@gmail.com>
Reviewed-by: Jan Friesse <jfriesse@redhat.com>
hfu %!s(int64=11) %!d(string=hai) anos
pai
achega
b6e2c8024d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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)