diff options
Diffstat (limited to 'usr.bin/rcs/ci.c')
-rw-r--r-- | usr.bin/rcs/ci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/ci.c b/usr.bin/rcs/ci.c index 2f54b5f0f42..d35fe2a77a2 100644 --- a/usr.bin/rcs/ci.c +++ b/usr.bin/rcs/ci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ci.c,v 1.173 2006/05/11 08:24:24 xsa Exp $ */ +/* $OpenBSD: ci.c,v 1.174 2006/05/17 19:37:40 xsa Exp $ */ /* * Copyright (c) 2005, 2006 Niall O'Higgins <niallo@openbsd.org> * All rights reserved. @@ -412,8 +412,8 @@ checkin_getlogmsg(RCSNUM *rev, RCSNUM *rev2, int flags) rcsnum_free(tmprev); if (!(flags & QUIET)) - printf("new revision: %s; previous revision: %s\n", nrev, - prev); + (void)fprintf(stderr, "new revision: %s; " + "previous revision: %s\n", nrev, prev); rcs_msg = rcs_prompt(prompt); |