From d966f1b2f38c5f380f3a71d4ce698dac155a4bb8 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 5 Apr 2013 11:31:50 +0000 Subject: pack.c: use LONG_LONG * pack.c (NATINT_LEN_Q): do not use long long directly, use LONG_LONG instead. fix compilation error on mswin. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40126 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- pack.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pack.c b/pack.c index bc4e1ed548..f5c0da5543 100644 --- a/pack.c +++ b/pack.c @@ -69,7 +69,7 @@ static const char endstr[] = "sSiIlLqQ"; #endif #ifdef HAVE_LONG_LONG -# define NATINT_LEN_Q NATINT_LEN(long long, 8) +# define NATINT_LEN_Q NATINT_LEN(LONG_LONG, 8) #else # define NATINT_LEN_Q 8 #endif -- cgit v1.2.3