diff options
author | 2009-07-22 20:23:44 +0000 | |
---|---|---|
committer | 2009-07-22 20:23:44 +0000 | |
commit | 0931159fe6f64396fb2fe996f892eca10fcec3c3 (patch) | |
tree | 02cd713cbec268542b73564287eae085241fffb5 /sys | |
parent | Fix the configure test for symbol visibility support; the current test (diff) | |
download | wireguard-openbsd-0931159fe6f64396fb2fe996f892eca10fcec3c3.tar.xz wireguard-openbsd-0931159fe6f64396fb2fe996f892eca10fcec3c3.zip |
libsa printf doesn't support sizes in %s specifiers; fix format strings
accordingly.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sgi/stand/boot/arcbios.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/sgi/stand/boot/arcbios.c b/sys/arch/sgi/stand/boot/arcbios.c index cd7318634fd..ac895bfa520 100644 --- a/sys/arch/sgi/stand/boot/arcbios.c +++ b/sys/arch/sgi/stand/boot/arcbios.c @@ -1,4 +1,4 @@ -/* $OpenBSD: arcbios.c,v 1.11 2009/06/19 17:39:02 miod Exp $ */ +/* $OpenBSD: arcbios.c,v 1.12 2009/07/22 20:23:44 miod Exp $ */ /*- * Copyright (c) 1996 M. Warner Losh. All rights reserved. * Copyright (c) 1996-2004 Opsycon AB. All rights reserved. @@ -211,7 +211,7 @@ arcbios_init() #endif } - printf("UNRECOGNIZED SYSTEM '%s' VENDOR '%8.8s' PRODUCT '%8.8s'\n", + printf("UNRECOGNIZED SYSTEM '%s' VENDOR '%s' PRODUCT '%s'\n", cf == NULL || sysid == NULL ? "(null)" : sysid, sid->vendor, sid->prodid); printf("Halting system!\n"); |