From bad0c37193b4697cec1b6d5f1afb3413edbd9c3c Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 20 Apr 2010 14:11:23 -0700 Subject: [PATCH] in-band: Use NULL for null pointer constant, instead of 0. Suggested-by: Justin Pettit --- ofproto/in-band.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ofproto/in-band.c b/ofproto/in-band.c index 6f9e5c093..9f4bc5971 100644 --- a/ofproto/in-band.c +++ b/ofproto/in-band.c @@ -833,7 +833,7 @@ in_band_set_remotes(struct in_band *ib, struct rconn **remotes, size_t n) free(ib->remotes); /* Set up new remotes. */ - ib->remotes = n ? xzalloc(n * sizeof *ib->remotes) : 0; + ib->remotes = n ? xzalloc(n * sizeof *ib->remotes) : NULL; ib->n_remotes = n; for (i = 0; i < n; i++) { ib->remotes[i].rconn = remotes[i]; -- 2.43.0