Module Name:    src
Committed By:   joerg
Date:           Mon May 23 20:43:03 UTC 2011

Modified Files:
        src/lib/libform: internals.c

Log Message:
Save space, kill some ()


To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/lib/libform/internals.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/lib/libform/internals.c
diff -u src/lib/libform/internals.c:1.34 src/lib/libform/internals.c:1.35
--- src/lib/libform/internals.c:1.34	Thu May 13 17:52:12 2010
+++ src/lib/libform/internals.c	Mon May 23 20:43:02 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: internals.c,v 1.34 2010/05/13 17:52:12 tnozaki Exp $	*/
+/*	$NetBSD: internals.c,v 1.35 2011/05/23 20:43:02 joerg Exp $	*/
 
 /*-
  * Copyright (c) 1998-1999 Brett Lymn
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__RCSID("$NetBSD: internals.c,v 1.34 2010/05/13 17:52:12 tnozaki Exp $");
+__RCSID("$NetBSD: internals.c,v 1.35 2011/05/23 20:43:02 joerg Exp $");
 
 #include <limits.h>
 #include <ctype.h>
@@ -590,7 +590,7 @@
 				continue;
 			}
 			
-			if ((row->next == NULL)) {
+			if (row->next == NULL) {
 				/*
 				 * If there are no more lines and this line
 				 * is too short then our job is over.

Reply via email to