From 7a2a5d04f33f2747dc54c4152a4e413909d274a4 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Thu, 2 Feb 2012 22:16:58 +0000 Subject: Make box_time_t signed so that we can subtract them without getting silly answers. --- lib/common/BoxTime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/common/BoxTime.h') diff --git a/lib/common/BoxTime.h b/lib/common/BoxTime.h index a56f39f1..cc1571cd 100644 --- a/lib/common/BoxTime.h +++ b/lib/common/BoxTime.h @@ -11,7 +11,7 @@ #define BOXTIME__H // Time is presented as an unsigned 64 bit integer, in microseconds -typedef uint64_t box_time_t; +typedef int64_t box_time_t; #define NANO_SEC_IN_SEC (1000000000LL) #define NANO_SEC_IN_USEC (1000) -- cgit v1.2.3