From 3f8322d6b80646d96d10386cc8581a929a8692f7 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Tue, 1 Oct 2002 17:31:28 +0000 Subject: [PATCH] Remove a comma trailing an if clause. According to Kirk: "Luckily, the statement is usually true". Spotted by: FlexeLint --- sbin/newfs/newfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbin/newfs/newfs.c b/sbin/newfs/newfs.c index 99b9ffb9267e..8b03e9420e19 100644 --- a/sbin/newfs/newfs.c +++ b/sbin/newfs/newfs.c @@ -336,7 +336,7 @@ main(int argc, char *argv[]) sectorsize = DEV_BSIZE; fssize *= secperblk; - if (pp != NULL); + if (pp != NULL) pp->p_size *= secperblk; } mkfs(pp, special);