mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 21:55:25 +00:00
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
Block a user