mirror of https://gitee.com/openkylin/qemu.git
Fix indentation
Signed-off-by: Stefan Weil <weil@mail.berlios.de> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
cc9952f3ac
commit
50da01ed09
6
cmd.c
6
cmd.c
|
@ -288,9 +288,9 @@ static char *qemu_strsep(char **input, const char *delim)
|
||||||
{
|
{
|
||||||
char *result = *input;
|
char *result = *input;
|
||||||
if (result != NULL) {
|
if (result != NULL) {
|
||||||
char *p = result;
|
char *p = result;
|
||||||
for (p = result; *p != '\0'; p++) {
|
for (p = result; *p != '\0'; p++) {
|
||||||
if (strchr(delim, *p)) {
|
if (strchr(delim, *p)) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue