diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-12-20 22:53:57 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-12-20 22:53:57 +0000 |
commit | d89a4b934409bbafb02013eabe6c8f12a6fb0144 (patch) | |
tree | 38d5ec5531028f0c9c03bb4e1c5696e95dc3ca97 /sys/dev/hil/hilid.c | |
parent | acd546db8dd605ab724c92814d869e5e38539823 (diff) |
Relax a redundant printf format specifier.
Diffstat (limited to 'sys/dev/hil/hilid.c')
-rw-r--r-- | sys/dev/hil/hilid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/hil/hilid.c b/sys/dev/hil/hilid.c index ca8ca548cef..90ddbb22db5 100644 --- a/sys/dev/hil/hilid.c +++ b/sys/dev/hil/hilid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hilid.c,v 1.2 2003/02/26 20:22:04 miod Exp $ */ +/* $OpenBSD: hilid.c,v 1.3 2003/12/20 22:53:56 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -90,7 +90,7 @@ hilidattach(struct device *parent, struct device *self, void *aux) printf("%s: security code", self->dv_xname); for (i = 0; i < sizeof(sc->sc_id); i++) - printf(" %02.2x", sc->sc_id[i]); + printf(" %02x", sc->sc_id[i]); printf("\n"); } |