Commit 124c21d7 authored by Marc Mason's avatar Marc Mason Committed by Diego Biurrun

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
parent 8b2386dc
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment