ipc: Use correct log define error message

This commit is contained in:
Jakob Bornecrantz 2023-12-23 16:20:17 +00:00
parent 019343f3fc
commit c7b63a9786

View file

@ -468,7 +468,7 @@ init_all(struct ipc_server *s)
s->process = u_process_create_if_not_running(); s->process = u_process_create_if_not_running();
if (!s->process) { if (!s->process) {
U_LOG_E("monado-service is already running! Use XRT_LOG=trace for more information."); IPC_ERROR(s, "monado-service is already running! Use XRT_LOG=trace for more information.");
teardown_all(s); teardown_all(s);
return 1; return 1;
} }