diff options
author | 2016-10-13 20:51:25 +0000 | |
---|---|---|
committer | 2016-10-13 20:51:25 +0000 | |
commit | 53ce21770636b2a876ba8b08f34797235b43ecb2 (patch) | |
tree | 9f80d30bad7945b1874d8c544a54fdefc1020744 /usr.bin/cvs/edit.c | |
parent | Fix revision lookups for branches. Properly perform a revision (diff) | |
download | wireguard-openbsd-53ce21770636b2a876ba8b08f34797235b43ecb2.tar.xz wireguard-openbsd-53ce21770636b2a876ba8b08f34797235b43ecb2.zip |
rcsnum_free() -> free() cleanups. From Michael W. Bombardieri.
OK millert@
Diffstat (limited to 'usr.bin/cvs/edit.c')
-rw-r--r-- | usr.bin/cvs/edit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/edit.c b/usr.bin/cvs/edit.c index 8d79e36d4a2..65fc5802b92 100644 --- a/usr.bin/cvs/edit.c +++ b/usr.bin/cvs/edit.c @@ -1,4 +1,4 @@ -/* $OpenBSD: edit.c,v 1.51 2015/11/05 09:48:21 nicm Exp $ */ +/* $OpenBSD: edit.c,v 1.52 2016/10/13 20:51:25 fcambus Exp $ */ /* * Copyright (c) 2006, 2007 Xavier Santolaria <xsa@openbsd.org> * @@ -413,7 +413,7 @@ cvs_unedit_local(struct cvs_file *cf) free(entry); } - rcsnum_free(ba_rev); + free(ba_rev); (void)cvs_base_handle(cf, BASE_REMOVE); |