diff options
author | 2003-06-29 13:23:48 +0000 | |
---|---|---|
committer | 2003-06-29 13:23:48 +0000 | |
commit | 432f21a3e91b18d3c9a99ec8ec2f93850fd7d6df (patch) | |
tree | 53b2e4a33d3e9f6abb55ce5cc3b455eb97b830b6 | |
parent | bad format string; %s -> %d (diff) | |
download | wireguard-openbsd-432f21a3e91b18d3c9a99ec8ec2f93850fd7d6df.tar.xz wireguard-openbsd-432f21a3e91b18d3c9a99ec8ec2f93850fd7d6df.zip |
another bad format string; %s->%d
ok tedu@
-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; } |