diff options
author | Marc Mason <mpeg.blue@free.fr> | 2008-12-17 15:44:40 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-12-17 15:44:40 +0000 |
commit | 124c21d79f2124d028890022e98ea853a834a964 (patch) | |
tree | 410761a7328664f63fa903ad36ec35a691a9bbd8 /configure | |
parent | 8b2386dc5ab02cfc251010319dd8d742a1d152ea (diff) | |
download | ffmpeg-124c21d79f2124d028890022e98ea853a834a964.tar.gz |
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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 } |