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
Vendored
+1 -1
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
}