=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/diff.c,v retrieving revision 1.29 retrieving revision 1.30 diff -c -r1.29 -r1.30 *** src/usr.bin/rcs/diff.c 2010/07/15 18:23:50 1.29 --- src/usr.bin/rcs/diff.c 2010/07/16 17:53:20 1.30 *************** *** 1,4 **** ! /* $OpenBSD: diff.c,v 1.29 2010/07/15 18:23:50 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: diff.c,v 1.30 2010/07/16 17:53:20 ray Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. *************** *** 1209,1218 **** diff_output("***************"); if ((flags & D_PROTOTYPE)) { f = match_function(ixold, lowa-1, f1); ! if (f != NULL) { ! diff_output(" "); ! diff_output("%s", f); ! } } diff_output("\n*** "); range(lowa, upb, ","); --- 1209,1216 ---- diff_output("***************"); if ((flags & D_PROTOTYPE)) { f = match_function(ixold, lowa-1, f1); ! if (f != NULL) ! diff_output(" %s", f); } diff_output("\n*** "); range(lowa, upb, ","); *************** *** 1318,1327 **** diff_output(" @@"); if ((flags & D_PROTOTYPE)) { f = match_function(ixold, lowa-1, f1); ! if (f != NULL) { ! diff_output(" "); ! diff_output("%s", f); ! } } diff_output("\n"); --- 1316,1323 ---- diff_output(" @@"); if ((flags & D_PROTOTYPE)) { f = match_function(ixold, lowa-1, f1); ! if (f != NULL) ! diff_output(" %s", f); } diff_output("\n");