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/5f8729de575e
branches:  trunk
changeset: 949506:5f8729de575e
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 779cb48ae950 -r 5f8729de575e 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