systemd: Also force base-10 for the strtol() call

This call is used to parse a time value expressed in usec's, which is
always decimal.

Signed-off-by: Bryce Harrington <bryce@osg.samsung.com>
dev
Bryce Harrington 8 years ago
parent 375759e636
commit a8d987d93c
  1. 2
      compositor/systemd-notify.c

@ -145,7 +145,7 @@ module_init(struct weston_compositor *compositor,
return 0;
errno = 0;
watchdog_time_conv = strtol(watchdog_time_env, &tail, 0);
watchdog_time_conv = strtol(watchdog_time_env, &tail, 10);
if ((errno != 0) || (*tail != '\0'))
return 0;

Loading…
Cancel
Save