diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-05-17 19:37:41 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-05-17 19:37:41 +0000 |
commit | 12be27a6bfe8e288d68009b7d31dcd947e60c007 (patch) | |
tree | 6aad0cc7dc571b0fadab006484a639644a8d5fac /usr.bin/rcs/ci.c | |
parent | 5eb58755945b6184808b43291263f183fc261a28 (diff) |
fix printf's
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); |