diff options
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/sdiff/edit.c | 4 | ||||
-rw-r--r-- | usr.bin/sdiff/sdiff.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/sdiff/edit.c b/usr.bin/sdiff/edit.c index b437264dd6b..22643bab16d 100644 --- a/usr.bin/sdiff/edit.c +++ b/usr.bin/sdiff/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.8 2005/12/27 05:00:28 deraadt Exp $ */ +/* $OpenBSD: edit.c,v 1.9 2005/12/28 05:57:46 deraadt Exp $ */ /* * Written by Raymond Lai <ray@cyth.net>. @@ -149,7 +149,7 @@ eparse(const char *cmd, const char *left, const char *right) /* Both strings. */ if (left == NULL) goto RIGHT; - if (right == NULL) + if (right == NULL) goto LEFT; /* Neither column is blank, so print both. */ diff --git a/usr.bin/sdiff/sdiff.c b/usr.bin/sdiff/sdiff.c index 087260a86f3..3bbab8288e3 100644 --- a/usr.bin/sdiff/sdiff.c +++ b/usr.bin/sdiff/sdiff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sdiff.c,v 1.11 2005/12/27 05:13:14 tedu Exp $ */ +/* $OpenBSD: sdiff.c,v 1.12 2005/12/28 05:57:46 deraadt Exp $ */ /* * Written by Raymond Lai <ray@cyth.net>. @@ -252,7 +252,7 @@ main(int argc, char **argv) /* * Prints an individual column (left or right), taking into account * that tabs are variable-width. Takes a string, the current column - * the cursor is on the screen, and the maximum value of the column. + * the cursor is on the screen, and the maximum value of the column. * The column value is updated as we go along. */ static void |