Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src-draft/trunk]: src/sys/net80211 Users of taskqueue_cancel_timeout expect ...
details: https://anonhg.NetBSD.org/src-all/rev/f4d025955577
branches: trunk
changeset: 939189:f4d025955577
user: Nathanial Sloss <nat%netbsd.org@localhost>
date: Mon May 18 20:26:21 2020 +1000
description:
Users of taskqueue_cancel_timeout expect it to return 0 on success.
diffstat:
sys/net80211/ieee80211_netbsd.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diffs (12 lines):
diff -r 4d2159c312a1 -r f4d025955577 sys/net80211/ieee80211_netbsd.c
--- a/sys/net80211/ieee80211_netbsd.c Sat May 16 11:50:24 2020 +1000
+++ b/sys/net80211/ieee80211_netbsd.c Mon May 18 20:26:21 2020 +1000
@@ -160,7 +160,7 @@
struct timeout_task *timeout_task, u_int *pendp)
{
// printf ("taskqueue_cancel_timeout called\n");
- return -1;
+ return 0;
}
void
Home |
Main Index |
Thread Index |
Old Index