Skip to content

Commit

Permalink
resource: fix typo in message when exiting event loop in child process
Browse files Browse the repository at this point in the history
  • Loading branch information
prajnoha committed Jan 4, 2024
1 parent 511eee8 commit aba3b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resource/resource.c
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ int sid_resource_run_event_loop(sid_resource_t *res)

if ((r = sd_event_loop(res->event_loop.sd_event_loop)) < 0) {
if (r == -ECHILD)
resource_log_debug(res, "Exitting event loop in child");
resource_log_debug(res, "Exiting event loop in child");
else
resource_log_error_errno(res, r, "Event loop failed");
goto out;
Expand Down

0 comments on commit aba3b8f

Please sign in to comment.