diff options
author | 2006-04-26 15:08:25 +0000 | |
---|---|---|
committer | 2006-04-26 15:08:25 +0000 | |
commit | d4625ebb9c662d0b22a6e122302f1bb016c6852e (patch) | |
tree | 26dfc0f67472b0305cf34b137866f8e6015473d6 /usr.bin/rcs/diff.c | |
parent | Oops, correct import this time. (diff) | |
download | wireguard-openbsd-d4625ebb9c662d0b22a6e122302f1bb016c6852e.tar.xz wireguard-openbsd-d4625ebb9c662d0b22a6e122302f1bb016c6852e.zip |
err() cleanup;
Diffstat (limited to 'usr.bin/rcs/diff.c')
-rw-r--r-- | usr.bin/rcs/diff.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/diff.c b/usr.bin/rcs/diff.c index 5cf520c3bcf..6eecdd738c4 100644 --- a/usr.bin/rcs/diff.c +++ b/usr.bin/rcs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.1 2006/04/26 02:55:13 joris Exp $ */ +/* $OpenBSD: diff.c,v 1.2 2006/04/26 15:08:25 xsa Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -1385,7 +1385,7 @@ diff_output(const char *fmt, ...) i = vasprintf(&str, fmt, vap); va_end(vap); if (i == -1) - err(1, "diff_output:"); + err(1, "diff_output"); if (diffbuf != NULL) rcs_buf_append(diffbuf, str, strlen(str)); else |