diff options
author | Mattias Andrée <maandree@kth.se> | 2016-07-11 23:24:52 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2016-07-11 23:24:52 +0200 |
commit | ac5a90feacfc0bdbc39f2671626dff795af138bd (patch) | |
tree | 701aa0190141c487c7e2320f8407f01925e03a97 | |
parent | Split out initialisation and deinitialisation from main() (diff) | |
download | coopgammad-ac5a90feacfc0bdbc39f2671626dff795af138bd.tar.gz coopgammad-ac5a90feacfc0bdbc39f2671626dff795af138bd.tar.bz2 coopgammad-ac5a90feacfc0bdbc39f2671626dff795af138bd.tar.xz |
m doc
Signed-off-by: Mattias Andrée <maandree@kth.se>
-rw-r--r-- | src/gammad.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gammad.c b/src/gammad.c index bdd3683..49fd3fe 100644 --- a/src/gammad.c +++ b/src/gammad.c @@ -465,11 +465,11 @@ static int create_pidfile(char* pidfile) * @param preserve Preserve current gamma ramps at priority 0 * @param foreground Keep process in the foreground * @param keep_stderr Keep stderr open - * @return 1: success - * 2: normal failure - * 3: libgamma failure - * 4: the service is already running - * Otherwise: the negative of the exit value the + * @return 1: Success + * 2: Normal failure + * 3: Libgamma failure + * 4: The service is already running + * Otherwise: The negative of the exit value the * process should have and shall exit immediately */ static int initialise(int method, const char *sitename, int preserve, int foreground, int keep_stderr) |