diff options
author | Måns Rullgård <mans@mansr.com> | 2009-11-01 20:14:56 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-11-01 20:14:56 +0000 |
commit | 58b3536dd540bbf6003716df649f4226ca51f553 (patch) | |
tree | 0ab62ceed9b659000c1564e67231b7b1e7ddc12e | |
parent | 4c1645a4589d79501abbbba6a94247d4e6c724ad (diff) | |
download | ffmpeg-58b3536dd540bbf6003716df649f4226ca51f553.tar.gz |
configure: fix 64-bit test with clang
Originally committed as revision 20431 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1862,7 +1862,7 @@ case "$arch" in subarch="x86_32" enable fast_unaligned check_cc <<EOF && enable fast_64bit && subarch="x86_64" && spic=$shared - int test[sizeof(char*) - 7]; + int test[(int)sizeof(char*) - 7]; EOF if test "$subarch" = "x86_64"; then enable cmov |