From b6ee0d8d5d1cbf1e228f7a8f636ab3c6a7661333 Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Mon, 8 Jul 2013 16:57:37 +0000 Subject: Huge regression: LLint is signed! (regression introduced in r429 and r432) --- src/htsglobal.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/htsglobal.h b/src/htsglobal.h index e3a006e..8b60577 100644 --- a/src/htsglobal.h +++ b/src/htsglobal.h @@ -325,8 +325,8 @@ typedef __int64 TStamp; #define LLintP "%I64d" #elif (defined(_LP64) || defined(__x86_64__) \ || defined(__powerpc64__) || defined(__64BIT__)) -typedef unsigned long int LLint; -typedef unsigned long int TStamp; +typedef long int LLint; +typedef long int TStamp; #define LLintP "%ld" #else -- cgit v1.2.3