summaryrefslogtreecommitdiff
path: root/sys/stand
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2010-07-10 20:47:11 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2010-07-10 20:47:11 +0000
commit1a019f7d5fee2cc39b76fb4c3807e2f2bf3d77e6 (patch)
tree36714e495e9e4628825fb58cb136d755d8631e63 /sys/stand
parent2aaae05498d480ab35035202663bfc6a41354b50 (diff)
Remove debug print left in on last commit.
Diffstat (limited to 'sys/stand')
-rw-r--r--sys/stand/mkuboot/mkuboot.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/stand/mkuboot/mkuboot.c b/sys/stand/mkuboot/mkuboot.c
index c5512eefff5..e3f2c8ef42d 100644
--- a/sys/stand/mkuboot/mkuboot.c
+++ b/sys/stand/mkuboot/mkuboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mkuboot.c,v 1.3 2010/06/30 07:38:13 jmc Exp $ */
+/* $OpenBSD: mkuboot.c,v 1.4 2010/07/10 20:47:10 drahn Exp $ */
/*
* Copyright (c) 2008 Mark Kettenis
@@ -227,7 +227,6 @@ main(int argc, char *argv[])
if (ih.ih_type == IH_TYPE_SCRIPT) {
/* scripts have two extra words of size/pad */
fsize = htobe32(sb.st_size);
- printf("size %d\n", fsize);
crc = crc32(crc, (void *)&fsize, sizeof(fsize));
if (write(ofd, &fsize, sizeof fsize) != sizeof fsize)
err(1, "%s", oname);