openvz: split single-line if

Put the 'continue' statement on a separate line.
This commit is contained in:
Ján Tomko 2016-06-24 10:36:12 +02:00
parent 3bf9d35bf6
commit 16d77fc6b5

View File

@ -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) {