Author: jhibbits
Date: Fri Jan  1 17:56:52 2016
New Revision: 293044
URL: https://svnweb.freebsd.org/changeset/base/293044

Log:
  Accidentally dropped the 0 padding.
  
  Pointed out by:       cmeyer

Modified:
  head/sys/dev/sec/sec.c

Modified: head/sys/dev/sec/sec.c
==============================================================================
--- head/sys/dev/sec/sec.c      Fri Jan  1 17:06:16 2016        (r293043)
+++ head/sys/dev/sec/sec.c      Fri Jan  1 17:56:52 2016        (r293044)
@@ -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);
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to