From 2bf493863feef6ec0033f3f18d8abcb0a105d963 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Sat, 9 Apr 2016 20:36:07 +0000 Subject: USB: replace 0 with NULL for pointers. Found with devel/coccinelle. Reviewed by: hselasky --- lib/libusb/libusb20.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libusb/libusb20.c') diff --git a/lib/libusb/libusb20.c b/lib/libusb/libusb20.c index 1de3a265125a..2eb75f1c6d7c 100644 --- a/lib/libusb/libusb20.c +++ b/lib/libusb/libusb20.c @@ -139,8 +139,8 @@ libusb20_tr_close(struct libusb20_transfer *xfer) free(xfer->ppBuffer); } /* reset variable fields in case the transfer is opened again */ - xfer->priv_sc0 = 0; - xfer->priv_sc1 = 0; + xfer->priv_sc0 = NULL; + xfer->priv_sc1 = NULL; xfer->is_opened = 0; xfer->is_pending = 0; xfer->is_cancel = 0; -- cgit v1.2.3