diff options
author | 1999-06-22 23:45:04 +0000 | |
---|---|---|
committer | 1999-06-22 23:45:04 +0000 | |
commit | 4cb5244a1b66b00aa277e753320ead59baa98cae (patch) | |
tree | 73ed71eccbdd51436b92b2461a6f68051147d1a1 | |
parent | once it proved itself to work on everything we can get to, bump a version to 1/2 (; (diff) | |
download | wireguard-openbsd-4cb5244a1b66b00aa277e753320ead59baa98cae.tar.xz wireguard-openbsd-4cb5244a1b66b00aa277e753320ead59baa98cae.zip |
sprintf unknown device's id numbers in hex
-rw-r--r-- | sys/arch/hppa/hppa/autoconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/hppa/autoconf.c b/sys/arch/hppa/hppa/autoconf.c index 2bbb8c1acd0..059ed92fd22 100644 --- a/sys/arch/hppa/hppa/autoconf.c +++ b/sys/arch/hppa/hppa/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.3 1999/04/20 20:37:10 mickey Exp $ */ +/* $OpenBSD: autoconf.c,v 1.4 1999/06/22 23:45:04 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -354,7 +354,7 @@ hppa_mod_info(type, sv) (mi->mi_type != type || mi->mi_sv != sv); mi++); if (mi->mi_type < 0) { - sprintf(fakeid, "type %d, sv %d", type, sv); + sprintf(fakeid, "type %x, sv %x", type, sv); return fakeid; } else return mi->mi_name; |