diff options
author | 2015-03-02 15:23:28 +0000 | |
---|---|---|
committer | 2015-03-02 15:23:28 +0000 | |
commit | 20592b509f9961ee9a9654f475091a30bf8ef7ca (patch) | |
tree | ab12e3910a14625fde6737f893387f89c14ad071 | |
parent | Note that closefrom is an extension. (diff) | |
download | wireguard-openbsd-20592b509f9961ee9a9654f475091a30bf8ef7ca.tar.xz wireguard-openbsd-20592b509f9961ee9a9654f475091a30bf8ef7ca.zip |
Remove stray ')' from athn(4) "firmware command timed out" error message.
-rw-r--r-- | sys/dev/usb/if_athn_usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/if_athn_usb.c b/sys/dev/usb/if_athn_usb.c index bb4e6eca457..9513cc7d0be 100644 --- a/sys/dev/usb/if_athn_usb.c +++ b/sys/dev/usb/if_athn_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_athn_usb.c,v 1.32 2015/03/02 15:18:37 stsp Exp $ */ +/* $OpenBSD: if_athn_usb.c,v 1.33 2015/03/02 15:23:28 stsp Exp $ */ /*- * Copyright (c) 2011 Damien Bergamini <damien.bergamini@free.fr> @@ -895,7 +895,7 @@ athn_usb_wmi_xcmd(struct athn_usb_softc *usc, uint16_t cmd_id, void *ibuf, error = tsleep(&usc->wait_cmd_id, 0, "athnwmi", ATHN_USB_CMD_TIMEOUT); if (error) { if (error == EWOULDBLOCK) { - printf("%s: firmware command 0x%x timed out)\n", + printf("%s: firmware command 0x%x timed out\n", usc->usb_dev.dv_xname, cmd_id); error = ETIMEDOUT; } |