-/* $OpenBSD: diff_internals.c,v 1.30 2010/07/15 18:23:50 ray Exp $ */
+/* $OpenBSD: diff_internals.c,v 1.31 2010/07/16 17:53:20 ray Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
diff_output("***************");
if ((flags & D_PROTOTYPE)) {
f = match_function(ixold, lowa-1, f1);
- if (f != NULL) {
- diff_output(" ");
- diff_output("%s", f);
- }
+ if (f != NULL)
+ diff_output(" %s", f);
}
diff_output("\n*** ");
range(lowa, upb, ",");
diff_output(" @@");
if ((flags & D_PROTOTYPE)) {
f = match_function(ixold, lowa-1, f1);
- if (f != NULL) {
- diff_output(" ");
- diff_output("%s", f);
- }
+ if (f != NULL)
+ diff_output(" %s", f);
}
diff_output("\n");
-/* $OpenBSD: diff.c,v 1.29 2010/07/15 18:23:50 ray Exp $ */
+/* $OpenBSD: diff.c,v 1.30 2010/07/16 17:53:20 ray Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
diff_output("***************");
if ((flags & D_PROTOTYPE)) {
f = match_function(ixold, lowa-1, f1);
- if (f != NULL) {
- diff_output(" ");
- diff_output("%s", f);
- }
+ if (f != NULL)
+ diff_output(" %s", f);
}
diff_output("\n*** ");
range(lowa, upb, ",");
diff_output(" @@");
if ((flags & D_PROTOTYPE)) {
f = match_function(ixold, lowa-1, f1);
- if (f != NULL) {
- diff_output(" ");
- diff_output("%s", f);
- }
+ if (f != NULL)
+ diff_output(" %s", f);
}
diff_output("\n");