ref: 75b6e73e314c518e3378efb0824b09e6e8c792f2
parent: 567d30b1c9c2d05828e6d8e073c3266a98f849c2
	author: aiju <devnull@localhost>
	date: Tue Nov  6 07:05:15 EST 2018
	
nusb/serial: fix wrong guard statement (thanks deuteron)
--- a/sys/src/cmd/nusb/serial/serial.c
+++ b/sys/src/cmd/nusb/serial/serial.c
@@ -465,7 +465,7 @@
data = req->ifcall.data;
count = req->ifcall.count;
qlock(ser);
-	if(ser->wait4data != nil) {+	if(ser->wait4write != nil) {wcount = ser->wait4write(p, data, count);
qunlock(ser);
 	} else {--
⑨