diff options
author | 2013-11-19 01:23:51 +0000 | |
---|---|---|
committer | 2013-11-19 01:23:51 +0000 | |
commit | 3e2662149180040d69973ca6e0fc433a37a428fc (patch) | |
tree | 9658c97793ea3b8376f5e91114f355bf4a2f6589 | |
parent | format string cleanup (diff) | |
download | wireguard-openbsd-3e2662149180040d69973ca6e0fc433a37a428fc.tar.xz wireguard-openbsd-3e2662149180040d69973ca6e0fc433a37a428fc.zip |
oops
-rw-r--r-- | sys/dev/sbus/stp4020.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/sbus/stp4020.c b/sys/dev/sbus/stp4020.c index e0c156e7b59..cde691ef8d9 100644 --- a/sys/dev/sbus/stp4020.c +++ b/sys/dev/sbus/stp4020.c @@ -1,4 +1,4 @@ -/* $OpenBSD: stp4020.c,v 1.17 2013/11/18 20:21:51 deraadt Exp $ */ +/* $OpenBSD: stp4020.c,v 1.18 2013/11/19 01:23:51 deraadt Exp $ */ /* $NetBSD: stp4020.c,v 1.23 2002/06/01 23:51:03 lukem Exp $ */ /*- @@ -298,7 +298,7 @@ stp4020_create_event_thread(arg) if (kthread_create(stp4020_event_thread, sc, &sc->event_thread, sc->sc_dev.dv_xname)) { - panic("%s: unable to create event thread", name); + panic("%s: unable to create event thread", sc->sc_dev.dv_xname); } } |