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/717c06a4da6d
branches: trunk
changeset: 1025664:717c06a4da6d
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 25ef1718abd5 -r 717c06a4da6d 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