diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-10-07 21:47:33 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-10-07 21:47:33 +0000 |
commit | 72e54d6f66713dc2905d7b70108ffcfeda54f2bd (patch) | |
tree | 351fe44837a3a000bdf71a80e7c69dc3895d3d4e /usr.bin/cvs/remove.c | |
parent | b691345e2ba6d65b165f2c2ffcc8810591f70b73 (diff) |
knf and spacing, ok joris@
Diffstat (limited to 'usr.bin/cvs/remove.c')
-rw-r--r-- | usr.bin/cvs/remove.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/remove.c b/usr.bin/cvs/remove.c index 108fd28ff03..e69cd7387fa 100644 --- a/usr.bin/cvs/remove.c +++ b/usr.bin/cvs/remove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: remove.c,v 1.36 2005/09/06 17:08:05 xsa Exp $ */ +/* $OpenBSD: remove.c,v 1.37 2005/10/07 21:47:32 reyk Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * Copyright (c) 2004, 2005 Xavier Santolaria <xsa@openbsd.org> @@ -248,7 +248,7 @@ cvs_remove_file(const char *fpath) /* if -f option is used, physically remove the file */ if (force_remove == 1) { - if(cvs_unlink(fpath) == -1) + if (cvs_unlink(fpath) == -1) return (-1); nuked++; } else { |