From: Roy Marples Date: Sat, 8 Apr 2017 10:15:52 +0000 (+0100) Subject: Fit in 80 X-Git-Tag: v7.0.0-beta3~35 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ebdb87300ee314eab935fc9f29aeca91a7bbcbd2;p=thirdparty%2Fdhcpcd.git Fit in 80 --- diff --git a/src/if-options.c b/src/if-options.c index ef977e1c..f8fe5415 100644 --- a/src/if-options.c +++ b/src/if-options.c @@ -1138,7 +1138,7 @@ parse_option(struct dhcpcd_ctx *ctx, const char *ifname, struct if_options *ifo, syslog(LOG_ERR, "%s: %m", __func__); return -1; } - nconf = reallocarray(ifo->config, dl + 2, sizeof(char *)); + nconf = reallocarray(ifo->config, dl+2, sizeof(char *)); if (nconf == NULL) { syslog(LOG_ERR, "%s: %m", __func__); free(p);