From: Martin Ejdestig Date: Mon, 24 Oct 2016 22:30:26 +0000 (+0200) Subject: man: Fix event source priority enum names in synopsis (#4478) X-Git-Tag: v232~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2e5f466cbd8e0a93325e4ea8c2c38db3bbd1bc8;p=thirdparty%2Fsystemd.git man: Fix event source priority enum names in synopsis (#4478) --- diff --git a/man/sd_event_source_set_priority.xml b/man/sd_event_source_set_priority.xml index 6e7032fc80f..b6bab6d3168 100644 --- a/man/sd_event_source_set_priority.xml +++ b/man/sd_event_source_set_priority.xml @@ -57,9 +57,9 @@ #include <systemd/sd-event.h> enum { - SD_EVENT_SOURCE_IMPORTANT = -100, - SD_EVENT_SOURCE_NORMAL = 0, - SD_EVENT_SOURCE_IDLE = 100, + SD_EVENT_PRIORITY_IMPORTANT = -100, + SD_EVENT_PRIORITY_NORMAL = 0, + SD_EVENT_PRIORITY_IDLE = 100, };