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>
This commit is contained in:
Bryce Harrington 2016-07-12 19:03:01 -07:00
parent 375759e636
commit a8d987d93c

View file

@ -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;