mirror of
https://github.com/Dasharo/systemd.git
synced 2026-03-06 15:02:31 -08: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