From 5eadfbfcd01e23d3de1958c013ca556dbf0b5458 Mon Sep 17 00:00:00 2001 From: "Pedro F. Giffuni" Date: Mon, 18 Apr 2016 14:41:30 +0000 Subject: [PATCH] libbluetooth: use NULL instead of zero for pointers. --- lib/libbluetooth/bluetooth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libbluetooth/bluetooth.c b/lib/libbluetooth/bluetooth.c index bbcf0071cfe0..ad62a8739ab5 100644 --- a/lib/libbluetooth/bluetooth.c +++ b/lib/libbluetooth/bluetooth.c @@ -67,7 +67,7 @@ bt_gethostbyname(char const *name) while ((p = bt_gethostent()) != NULL) { if (strcasecmp(p->h_name, name) == 0) break; - for (cp = p->h_aliases; *cp != 0; cp++) + for (cp = p->h_aliases; *cp != NULL; cp++) if (strcasecmp(*cp, name) == 0) goto found; } @@ -180,7 +180,7 @@ bt_getprotobyname(char const *name) while ((p = bt_getprotoent()) != NULL) { if (strcmp(p->p_name, name) == 0) break; - for (cp = p->p_aliases; *cp != 0; cp++) + for (cp = p->p_aliases; *cp != NULL; cp++) if (strcmp(*cp, name) == 0) goto found; }