mirror of https://github.com/mpv-player/mpv
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
This commit is contained in:
parent
f2cc749fe8
commit
755d1ca042
|
@ -2841,7 +2841,7 @@ else
|
||||||
typedef signed char int_fast8_t;
|
typedef signed char int_fast8_t;
|
||||||
typedef signed int int_fast16_t;
|
typedef signed int int_fast16_t;
|
||||||
typedef signed int int_fast32_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 char uint_fast8_t;
|
||||||
typedef unsigned int uint_fast16_t;
|
typedef unsigned int uint_fast16_t;
|
||||||
typedef unsigned int uint_fast32_t;
|
typedef unsigned int uint_fast32_t;
|
||||||
|
|
Loading…
Reference in New Issue