From: mlarkin Date: Tue, 14 Jan 2014 09:57:51 +0000 (+0000) Subject: Typo in a printf, should be 'bytes' not 'blocks' X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=348d69c29f98d90256af05e8f461a39c720c4059;p=openbsd Typo in a printf, should be 'bytes' not 'blocks' --- diff --git a/sys/kern/subr_hibernate.c b/sys/kern/subr_hibernate.c index b724c4a4cfd..c4ff1564d23 100644 --- a/sys/kern/subr_hibernate.c +++ b/sys/kern/subr_hibernate.c @@ -1,4 +1,4 @@ -/* $OpenBSD: subr_hibernate.c,v 1.81 2013/11/21 00:13:33 dlg Exp $ */ +/* $OpenBSD: subr_hibernate.c,v 1.82 2014/01/14 09:57:51 mlarkin Exp $ */ /* * Copyright (c) 2011 Ariane van der Steldt @@ -1610,7 +1610,7 @@ hibernate_read_image(union hibernate_info *hib) disk_size = compressed_size; - printf("unhibernating @ block %lld length %lu blocks\n", + printf("unhibernating @ block %lld length %lu bytes\n", hib->sig_offset - chunktable_size, compressed_size);