diff options
author | Roy Marples <roy@marples.name> | 2008-01-22 11:07:39 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-22 11:07:39 +0000 |
commit | 649a71055294e9fa275ebb406361cf46c843cade (patch) | |
tree | 273005e044ce31f28f187b4abbabf78f35b53d1b /src/rc/rc-applets.c | |
parent | b4bff9ce5efce83a7265a42d4372d367ca32f696 (diff) |
Quiet some more lint warnings.
Diffstat (limited to 'src/rc/rc-applets.c')
-rw-r--r-- | src/rc/rc-applets.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/rc/rc-applets.c b/src/rc/rc-applets.c index fc362a28..7d7d04e5 100644 --- a/src/rc/rc-applets.c +++ b/src/rc/rc-applets.c @@ -37,6 +37,7 @@ #include <sys/types.h> #include <errno.h> #include <ctype.h> +#include <inttypes.h> #include <stdbool.h> #include <stdio.h> #include <stdlib.h> @@ -71,7 +72,7 @@ static int do_e (int argc, char **argv) { int retval = EXIT_SUCCESS; int i; - int l = 0; + size_t l = 0; char *message = NULL; char *p; int level = 0; @@ -99,7 +100,7 @@ static int do_e (int argc, char **argv) strcmp (applet, "vweend") == 0) { errno = 0; - retval = strtol (argv[0], NULL, 0); + retval = (int) strtoimax (argv[0], NULL, 0); if (errno != 0) retval = EXIT_FAILURE; else { @@ -278,7 +279,7 @@ static int do_mark_service (int argc, char **argv) char *runscript_pid = getenv ("RC_RUNSCRIPT_PID"); char *mtime; pid_t pid = 0; - int l; + size_t l; if (runscript_pid && sscanf (runscript_pid, "%d", &pid) == 1) if (kill (pid, SIGHUP) != 0) |