summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMarc Mason <mpeg.blue@free.fr>2008-12-17 15:44:40 +0000
committerDiego Biurrun <diego@biurrun.de>2008-12-17 15:44:40 +0000
commit124c21d79f2124d028890022e98ea853a834a964 (patch)
tree410761a7328664f63fa903ad36ec35a691a9bbd8 /configure
parent8b2386dc5ab02cfc251010319dd8d742a1d152ea (diff)
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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 9f1f0f6882..4d23c9c57c 100755
--- a/configure
+++ b/configure
@@ -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
}