diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-05-11 19:41:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-05-11 19:41:13 +0000 |
commit | d6d7c738346239a3c708dc0978911e106ff464ef (patch) | |
tree | bc43e8e3f9316ebb64d8b2b82353eeccf749cf26 /sys/arch/hppa/dev/mongoose.c | |
parent | 0b07ddfee5e2e357a1085b59936307292adeacfe (diff) |
string cleaning; krw ok
Diffstat (limited to 'sys/arch/hppa/dev/mongoose.c')
-rw-r--r-- | sys/arch/hppa/dev/mongoose.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/dev/mongoose.c b/sys/arch/hppa/dev/mongoose.c index c931a8996fe..0dda370bd10 100644 --- a/sys/arch/hppa/dev/mongoose.c +++ b/sys/arch/hppa/dev/mongoose.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mongoose.c,v 1.11 2003/04/08 20:48:39 mickey Exp $ */ +/* $OpenBSD: mongoose.c,v 1.12 2003/05/11 19:41:09 deraadt Exp $ */ /* * Copyright (c) 1998,1999 Michael Shalayeff @@ -238,7 +238,7 @@ mg_intr_string(void *v, int irq) { static char buf[16]; - sprintf (buf, "isa irq %d", irq); + snprintf(buf, sizeof buf, "isa irq %d", irq); return buf; } |