diff options
author | 2006-04-25 13:55:49 +0000 | |
---|---|---|
committer | 2006-04-25 13:55:49 +0000 | |
commit | 671d72e570df5a911717bd07cc19a13e38421841 (patch) | |
tree | 4fd7e41d8677006eff2efcbdb9c70e6acb503582 /usr.bin/rcs/rcsutil.c | |
parent | fatal() -> err()/errx() as we try to not depend on heavy cvs_log(). (diff) | |
download | wireguard-openbsd-671d72e570df5a911717bd07cc19a13e38421841.tar.xz wireguard-openbsd-671d72e570df5a911717bd07cc19a13e38421841.zip |
quote strings consistently.
Diffstat (limited to 'usr.bin/rcs/rcsutil.c')
-rw-r--r-- | usr.bin/rcs/rcsutil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsutil.c b/usr.bin/rcs/rcsutil.c index 1e552527654..8153966c88b 100644 --- a/usr.bin/rcs/rcsutil.c +++ b/usr.bin/rcs/rcsutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsutil.c,v 1.3 2006/04/25 13:36:36 xsa Exp $ */ +/* $OpenBSD: rcsutil.c,v 1.4 2006/04/25 13:55:49 xsa Exp $ */ /* * Copyright (c) 2005, 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> @@ -285,7 +285,7 @@ void rcs_set_rev(const char *str, RCSNUM **rev) { if (str == NULL || (*rev = rcsnum_parse(str)) == NULL) - errx(1, "bad revision number '%s'", str); + errx(1, "bad revision number `%s'", str); } /* |