summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorXavier Santolaria <xsa@cvs.openbsd.org>2007-01-09 10:01:44 +0000
committerXavier Santolaria <xsa@cvs.openbsd.org>2007-01-09 10:01:44 +0000
commitecb6347fff943f52c02eb0ffb640663ddb2223f0 (patch)
tree0e83d8471afff4ea9ff639dbc708e999bfc1d70b /usr.bin
parenta2c17b45d6651fef83683a6b651547ff0ff19abe (diff)
remove uneeded linebreak when creating the CVS/Notify
file with the edit command.
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/cvs/edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/edit.c b/usr.bin/cvs/edit.c
index 35ebd245933..f55f66cfbbb 100644
--- a/usr.bin/cvs/edit.c
+++ b/usr.bin/cvs/edit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: edit.c,v 1.24 2007/01/08 13:21:21 xsa Exp $ */
+/* $OpenBSD: edit.c,v 1.25 2007/01/09 10:01:43 xsa Exp $ */
/*
* Copyright (c) 2006, 2007 Xavier Santolaria <xsa@openbsd.org>
*
@@ -277,7 +277,7 @@ cvs_edit_local(struct cvs_file *cf)
if (getcwd(wdir, sizeof(wdir)) == NULL)
fatal("getcwd failed");
- (void)fprintf(fp, "E%s\t%s GMT\t%s\t%s\t\n",
+ (void)fprintf(fp, "E%s\t%s GMT\t%s\t%s\t",
cf->file_name, timebuf, thishost, wdir);
if (edit_aflags & E_EDIT)