diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 1998-09-26 10:51:38 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 1998-09-26 10:51:38 +0000 |
| commit | e24168e6c332f84b4446e76a5a7d2eac672970c0 (patch) | |
| tree | 110f0f1b58c15c565bcd689fc4d5b46f3b1ce662 /sys/boot/common/misc.c | |
| parent | f069bf5a2c90b5bb549f2121caad174e6cc0b78c (diff) | |
Notes
Diffstat (limited to 'sys/boot/common/misc.c')
| -rw-r--r-- | sys/boot/common/misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/boot/common/misc.c b/sys/boot/common/misc.c index 6333eaf38722..96c58f8d10d1 100644 --- a/sys/boot/common/misc.c +++ b/sys/boot/common/misc.c @@ -23,7 +23,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: misc.c,v 1.2 1998/09/03 02:10:07 msmith Exp $ + * $Id: misc.c,v 1.3 1998/09/19 01:31:28 msmith Exp $ */ #include <string.h> @@ -101,7 +101,7 @@ hexdump(caddr_t region, size_t len) pager_open(); for (line = region; line < (region + len); line += 16) { - emit("%08x ", line); + emit("%08lx ", (long) line); for (x = 0; x < 16; x++) { if ((line + x) < (region + len)) { |
