diff options
author | 1999-01-02 08:38:58 +0000 | |
---|---|---|
committer | 1999-01-02 08:38:58 +0000 | |
commit | 5c056f277f311b33428611c2583bbcd08a356813 (patch) | |
tree | ca8b00809b813c7f55ae23173dcd878657d6f29f | |
parent | Fix possible free() of uninitialized pointer. (diff) | |
download | wireguard-openbsd-5c056f277f311b33428611c2583bbcd08a356813.tar.xz wireguard-openbsd-5c056f277f311b33428611c2583bbcd08a356813.zip |
indent
-rw-r--r-- | bin/rm/rm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/rm/rm.c b/bin/rm/rm.c index f723e0b32d8..af97972de4b 100644 --- a/bin/rm/rm.c +++ b/bin/rm/rm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rm.c,v 1.8 1999/01/02 08:30:27 weingart Exp $ */ +/* $OpenBSD: rm.c,v 1.9 1999/01/02 08:38:58 deraadt Exp $ */ /* $NetBSD: rm.c,v 1.19 1995/09/07 06:48:50 jtc Exp $ */ /*- @@ -44,7 +44,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)rm.c 8.8 (Berkeley) 4/27/95"; #else -static char rcsid[] = "$OpenBSD: rm.c,v 1.8 1999/01/02 08:30:27 weingart Exp $"; +static char rcsid[] = "$OpenBSD: rm.c,v 1.9 1999/01/02 08:38:58 deraadt Exp $"; #endif #endif /* not lint */ @@ -353,7 +353,7 @@ rm_overwrite(file, sbp) } err: eval = 1; - if(buf) + if (buf) free(buf); warn("%s", file); } |