summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2013-07-08 16:57:37 +0000
committerXavier Roche <xroche@users.noreply.github.com>2013-07-08 16:57:37 +0000
commitb6ee0d8d5d1cbf1e228f7a8f636ab3c6a7661333 (patch)
treeb1427121d125553aa6cac695f7ee2b4f2ebe5ff6 /src
parent57c732da58ab13485f83f890369126ccc3e1228c (diff)
Huge regression: LLint is signed! (regression introduced in r429 and r432)
Diffstat (limited to 'src')
-rw-r--r--src/htsglobal.h4
1 files changed, 2 insertions, 2 deletions
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