diff options
author | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-06-29 13:23:49 +0000 |
---|---|---|
committer | Anil Madhavapeddy <avsm@cvs.openbsd.org> | 2003-06-29 13:23:49 +0000 |
commit | 96c2d326c18f80331dbbf425760d2d7ab6bdfc99 (patch) | |
tree | 4124c25c51c30844a87855504fd5d4427a214d2b /sys/dev | |
parent | f91447c3d9384a10304a77b35ed6961b311a5436 (diff) |
another bad format string; %s->%d
ok tedu@
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/if_ste.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_ste.c b/sys/dev/pci/if_ste.c index 2592822dc6c..ffa6c42de2c 100644 --- a/sys/dev/pci/if_ste.c +++ b/sys/dev/pci/if_ste.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ste.c,v 1.18 2003/01/15 06:31:24 art Exp $ */ +/* $OpenBSD: if_ste.c,v 1.19 2003/06/29 13:23:48 avsm Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -963,7 +963,7 @@ void ste_attach(parent, self, aux) sc->ste_ldata_ptr = malloc(sizeof(struct ste_list_data) + 8, M_DEVBUF, M_NOWAIT); if (sc->ste_ldata_ptr == NULL) { - printf("%s: no memory for list buffers!\n", sc->ste_unit); + printf("ste%d: no memory for list buffers!\n", sc->ste_unit); goto fail; } |