From 755d1ca042e78506d6e7f04b7a37995c4e62cf82 Mon Sep 17 00:00:00 2001 From: reimar Date: Sun, 22 Oct 2006 15:13:50 +0000 Subject: [PATCH] Consistency fix: use "signed long long" for int_fast64_t instead of "signed long long int", since uint_fast64_t uses "unsigned long long" git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@20366 b3059339-0415-0410-9bf9-f77b7e298cf2 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 19eaedfba3..9f8d17f539 100755 --- a/configure +++ b/configure @@ -2841,7 +2841,7 @@ else typedef signed char int_fast8_t; typedef signed int int_fast16_t; typedef signed int int_fast32_t; - typedef signed long long int int_fast64_t; + typedef signed long long int_fast64_t; typedef unsigned char uint_fast8_t; typedef unsigned int uint_fast16_t; typedef unsigned int uint_fast32_t;