summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-01-18 16:49:48 -0500
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2013-01-18 17:04:50 -0500
commitd6a195a3c373f67632cb98d6e6e14f974ef062f9 (patch)
tree3da905e430e6710ba8863b1673bb988f30979df6 /src
parent2b3987a863975f5a1fa1754725e3d07a5d4f6478 (diff)
build-sys: add autoconf macro to pick macro for x32 compatibility
Diffstat (limited to 'src')
-rw-r--r--src/core/manager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/manager.c b/src/core/manager.c
index df0fd63e87..d4afc931f3 100644
--- a/src/core/manager.c
+++ b/src/core/manager.c
@@ -157,8 +157,8 @@ static int manager_setup_time_change(Manager *m) {
/* We only care for the cancellation event, hence we set the
* timeout to the latest possible value. */
- assert_cc(sizeof(time_t) == sizeof(long));
- its.it_value.tv_sec = LONG_MAX;
+ assert_cc(sizeof(time_t) == sizeof(TIME_T_MAX));
+ its.it_value.tv_sec = TIME_T_MAX;
if (timerfd_settime(m->time_change_watch.fd, TFD_TIMER_ABSTIME|TFD_TIMER_CANCEL_ON_SET, &its, NULL) < 0) {
log_debug("Failed to set up TFD_TIMER_CANCEL_ON_SET, ignoring: %m");