From: Ján Tomko Date: Fri, 24 Jun 2016 08:36:12 +0000 (+0200) Subject: openvz: split single-line if X-Git-Tag: v2.0.0-rc1~54 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=16d77fc6b505039e831f96565e6c0713369cd42a;p=thirdparty%2Flibvirt.git openvz: split single-line if Put the 'continue' statement on a separate line. --- diff --git a/src/openvz/openvz_conf.c b/src/openvz/openvz_conf.c index ff5e5b891b..aa04bc4e07 100644 --- a/src/openvz/openvz_conf.c +++ b/src/openvz/openvz_conf.c @@ -741,7 +741,8 @@ openvzReadConfigParam(const char *conf_file, const char *param, char **value) continue; sf = line + strlen(param); - if (*sf++ != '=') continue; + if (*sf++ != '=') + continue; saveptr = NULL; if ((token = strtok_r(sf, "\"\t\n", &saveptr)) != NULL) {