mirror of
https://github.com/morgan9e/systemd
synced 2026-04-15 00:47:10 +09:00
udevd: worker - use _exit() rather than exit()
Follow the coding style and avoid the exit handlers.
This commit is contained in:
@@ -409,7 +409,7 @@ out:
|
||||
udev_builtin_exit(udev);
|
||||
udev_unref(udev);
|
||||
log_close();
|
||||
exit(r < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
|
||||
_exit(r < 0 ? EXIT_FAILURE : EXIT_SUCCESS);
|
||||
}
|
||||
case -1:
|
||||
event->state = EVENT_QUEUED;
|
||||
|
||||
Reference in New Issue
Block a user