diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-26 15:08:26 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-26 15:08:26 +0000 |
commit | eddf41e7862ea1cb91de12a93c993b66641c1ccf (patch) | |
tree | 65e1a49f2d74bbabe79e0fa2684439e683b2574a /usr.bin/rcs/diff.c | |
parent | 94463e03d88ae72c3fb9ba2775f4a83ddf98af03 (diff) |
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 |