qga: Switch and case should be at the same indent
Reported-by: Euler Robot <euler.robot@huawei.com> Signed-off-by: AlexChen <alex.chen@huawei.com> Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com> Signed-off-by: Michael Roth <michael.roth@amd.com>
This commit is contained in:
parent
aaaed19972
commit
86dc17d4d0
52
qga/main.c
52
qga/main.c
@ -279,20 +279,20 @@ QEMU_HELP_BOTTOM "\n"
|
||||
static const char *ga_log_level_str(GLogLevelFlags level)
|
||||
{
|
||||
switch (level & G_LOG_LEVEL_MASK) {
|
||||
case G_LOG_LEVEL_ERROR:
|
||||
return "error";
|
||||
case G_LOG_LEVEL_CRITICAL:
|
||||
return "critical";
|
||||
case G_LOG_LEVEL_WARNING:
|
||||
return "warning";
|
||||
case G_LOG_LEVEL_MESSAGE:
|
||||
return "message";
|
||||
case G_LOG_LEVEL_INFO:
|
||||
return "info";
|
||||
case G_LOG_LEVEL_DEBUG:
|
||||
return "debug";
|
||||
default:
|
||||
return "user";
|
||||
case G_LOG_LEVEL_ERROR:
|
||||
return "error";
|
||||
case G_LOG_LEVEL_CRITICAL:
|
||||
return "critical";
|
||||
case G_LOG_LEVEL_WARNING:
|
||||
return "warning";
|
||||
case G_LOG_LEVEL_MESSAGE:
|
||||
return "message";
|
||||
case G_LOG_LEVEL_INFO:
|
||||
return "info";
|
||||
case G_LOG_LEVEL_DEBUG:
|
||||
return "debug";
|
||||
default:
|
||||
return "user";
|
||||
}
|
||||
}
|
||||
|
||||
@ -687,19 +687,19 @@ DWORD WINAPI service_ctrl_handler(DWORD ctrl, DWORD type, LPVOID data,
|
||||
GAService *service = &ga_state->service;
|
||||
|
||||
switch (ctrl) {
|
||||
case SERVICE_CONTROL_STOP:
|
||||
case SERVICE_CONTROL_SHUTDOWN:
|
||||
quit_handler(SIGTERM);
|
||||
SetEvent(ga_state->wakeup_event);
|
||||
service->status.dwCurrentState = SERVICE_STOP_PENDING;
|
||||
SetServiceStatus(service->status_handle, &service->status);
|
||||
break;
|
||||
case SERVICE_CONTROL_DEVICEEVENT:
|
||||
handle_serial_device_events(type, data);
|
||||
break;
|
||||
case SERVICE_CONTROL_STOP:
|
||||
case SERVICE_CONTROL_SHUTDOWN:
|
||||
quit_handler(SIGTERM);
|
||||
SetEvent(ga_state->wakeup_event);
|
||||
service->status.dwCurrentState = SERVICE_STOP_PENDING;
|
||||
SetServiceStatus(service->status_handle, &service->status);
|
||||
break;
|
||||
case SERVICE_CONTROL_DEVICEEVENT:
|
||||
handle_serial_device_events(type, data);
|
||||
break;
|
||||
|
||||
default:
|
||||
ret = ERROR_CALL_NOT_IMPLEMENTED;
|
||||
default:
|
||||
ret = ERROR_CALL_NOT_IMPLEMENTED;
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user