summaryrefslogtreecommitdiffstats
path: root/lib/libusb
diff options
context:
space:
mode:
authorpfg <pfg@FreeBSD.org>2016-04-09 20:36:07 +0000
committerpfg <pfg@FreeBSD.org>2016-04-09 20:36:07 +0000
commitaa42ac0ef56e414b8acc167fa71c786c75af2a2c (patch)
treea64fc1c28ce33890150327ef2cfc4c0ca17f72b3 /lib/libusb
parent6dcdb61ae36b64cef3125daa63d6dc75f5bcdadd (diff)
downloadFreeBSD-src-aa42ac0ef56e414b8acc167fa71c786c75af2a2c.zip
FreeBSD-src-aa42ac0ef56e414b8acc167fa71c786c75af2a2c.tar.gz
USB: replace 0 with NULL for pointers.
Found with devel/coccinelle. Reviewed by: hselasky
Diffstat (limited to 'lib/libusb')
-rw-r--r--lib/libusb/libusb20.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libusb/libusb20.c b/lib/libusb/libusb20.c
index 1de3a26..2eb75f1 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;
OpenPOWER on IntegriCloud