mirror of https://gitee.com/openkylin/libvirt.git
openvz: split single-line if
Put the 'continue' statement on a separate line.
This commit is contained in:
parent
3bf9d35bf6
commit
16d77fc6b5
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue