1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-01-24 13:56:33 +02:00

Check function prototype in check_asm function to avoid compiler warnings.

patch by Marc Mason, mpeg.blue free fr

Originally committed as revision 16188 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Marc Mason 2008-12-17 15:44:40 +00:00 committed by Diego Biurrun
parent 8b2386dc5a
commit 124c21d79f

2
configure vendored
View File

@ -512,7 +512,7 @@ check_asm(){
asm="$2"
shift 2
check_cc "$@" <<EOF && enable $name || disable $name
int foo(void){ __asm__ volatile($asm); }
void foo(void){ __asm__ volatile($asm); }
EOF
}