diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2006-09-25 23:58:06 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2006-09-25 23:58:06 +0000 |
commit | 2f0b8ec62556eb3f65c62d28743f8c5d22a8ee91 (patch) | |
tree | 615f026db59eb2362f1cfa8e4a1c4e02fb274202 /usr.bin | |
parent | b586a117acf602e171f6b7aa0a433a8e7ff3fa81 (diff) |
Remove debugging printf accidentally committed.
OK joris@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/rcsutil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsutil.c b/usr.bin/rcs/rcsutil.c index db019a01d59..05bcb5413b7 100644 --- a/usr.bin/rcs/rcsutil.c +++ b/usr.bin/rcs/rcsutil.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsutil.c,v 1.20 2006/09/22 05:38:29 niallo Exp $ */ +/* $OpenBSD: rcsutil.c,v 1.21 2006/09/25 23:58:05 ray Exp $ */ /* * Copyright (c) 2005, 2006 Joris Vink <joris@openbsd.org> * Copyright (c) 2006 Xavier Santolaria <xsa@openbsd.org> @@ -493,7 +493,6 @@ rcs_splitlines(BUF *fcont) p = c = lines->l_data; for (i = 0; i < rcs_buf_len(fcont); i++) { if (*p == '\n' || (i == rcs_buf_len(fcont) - 1 && *c)) { - printf("c: %x\n", *c); len = p - c; lp = xmalloc(sizeof(*lp)); lp->l_line = xmalloc(len + 1); |