[PATCH 27/30] return statement cleanup - kill pointless parenthesesin kernel/panic.c

From: Jesper Juhl
Date: Wed Dec 15 2004 - 20:06:23 EST



This patch removes pointless parentheses from return statements in
kernel/panic.c

Signed-off-by: Jesper Juhl <juhl-lkml@xxxxxx>

--- linux-2.6.10-rc3-bk8-orig/kernel/panic.c 2004-12-06 22:24:56.000000000 +0100
+++ linux-2.6.10-rc3-bk8/kernel/panic.c 2004-12-15 23:58:34.000000000 +0100
@@ -148,7 +148,7 @@ const char *print_tainted(void)
}
else
snprintf(buf, sizeof(buf), "Not tainted");
- return(buf);
+ return buf;
}

void add_taint(unsigned flag)



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/