Accidentally dropped the 0 padding.

Pointed out by:	cmeyer
This commit is contained in:
Justin Hibbits 2016-01-01 17:56:52 +00:00
parent 21d7e927b5
commit 2afca09419
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=293044

View file

@ -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);
}