Module Name:    src
Committed By:   christos
Date:           Sat Dec 29 14:51:41 UTC 2012

Modified Files:
        src/external/historical/nawk/dist: lib.c

Log Message:
remove useless cast.


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/external/historical/nawk/dist/lib.c

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

Modified files:

Index: src/external/historical/nawk/dist/lib.c
diff -u src/external/historical/nawk/dist/lib.c:1.6 src/external/historical/nawk/dist/lib.c:1.7
--- src/external/historical/nawk/dist/lib.c:1.6	Fri Dec 28 21:44:26 2012
+++ src/external/historical/nawk/dist/lib.c	Sat Dec 29 09:51:41 2012
@@ -546,7 +546,7 @@ void recbld(void)	/* create $0 from $1..
 	fldtab[0]->tval = REC | STR | DONTFREE;
 	fldtab[0]->sval = record;
 
-	   dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, (void*)fldtab[0]) );
+	   dprintf( ("in recbld inputFS=%s, fldtab[0]=%p\n", inputFS, fldtab[0]) );
 	   dprintf( ("recbld = |%s|\n", record) );
 	donerec = 1;
 }

Reply via email to