summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhibbits <jhibbits@FreeBSD.org>2016-01-01 17:56:52 +0000
committerjhibbits <jhibbits@FreeBSD.org>2016-01-01 17:56:52 +0000
commitd4c8a94dd7604a559e707ba96e37c17524aecabd (patch)
tree221695936e13838cdb673a3a51ad1217121bc4eb
parent5fd886aabf257d475889d0c57e9d15a6a27fff17 (diff)
downloadFreeBSD-src-d4c8a94dd7604a559e707ba96e37c17524aecabd.zip
FreeBSD-src-d4c8a94dd7604a559e707ba96e37c17524aecabd.tar.gz
Accidentally dropped the 0 padding.
Pointed out by: cmeyer
-rw-r--r--sys/dev/sec/sec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/sec/sec.c b/sys/dev/sec/sec.c
index 5ef000f..b83e7eb 100644
--- a/sys/dev/sec/sec.c
+++ b/sys/dev/sec/sec.c
@@ -236,7 +236,7 @@ sec_probe(device_t dev)
sc->sc_version = 3;
break;
default:
- device_printf(dev, "unknown SEC ID 0x%16"PRIx64"!\n", id);
+ device_printf(dev, "unknown SEC ID 0x%016"PRIx64"!\n", id);
return (ENXIO);
}
OpenPOWER on IntegriCloud