diff options
author | 2010-07-10 20:47:10 +0000 | |
---|---|---|
committer | 2010-07-10 20:47:10 +0000 | |
commit | af551a59c172173959ca7fc32537528ba184806e (patch) | |
tree | f16227ee411a3e2ca1bb58496cb41218acf2ab73 | |
parent | fields are incorrectly named in structure descriptions (diff) | |
download | wireguard-openbsd-af551a59c172173959ca7fc32537528ba184806e.tar.xz wireguard-openbsd-af551a59c172173959ca7fc32537528ba184806e.zip |
Remove debug print left in on last commit.
-rw-r--r-- | sys/stand/mkuboot/mkuboot.c | 3 |
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); |