mirror of
https://github.com/libvirt/libvirt.git
synced 2025-02-25 18:55:26 -06: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;
|
continue;
|
||||||
|
|
||||||
sf = line + strlen(param);
|
sf = line + strlen(param);
|
||||||
if (*sf++ != '=') continue;
|
if (*sf++ != '=')
|
||||||
|
continue;
|
||||||
|
|
||||||
saveptr = NULL;
|
saveptr = NULL;
|
||||||
if ((token = strtok_r(sf, "\"\t\n", &saveptr)) != NULL) {
|
if ((token = strtok_r(sf, "\"\t\n", &saveptr)) != NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user