diff options
author | Måns Rullgård <mans@mansr.com> | 2010-01-18 23:12:53 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-01-18 23:12:53 +0000 |
commit | 3784e82e9cce5d5440602e573f2dbd440388d758 (patch) | |
tree | fb54ac66187b914b8fc9228ced86d008d6813f0d /configure | |
parent | c9566115271c58aa0e6f0734c9c0c674a583d293 (diff) | |
download | ffmpeg-3784e82e9cce5d5440602e573f2dbd440388d758.tar.gz |
configure: rename a variable in check_asm
Originally committed as revision 21302 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -583,11 +583,11 @@ check_as(){ check_asm(){ log check_asm "$@" name="$1" - asm="$2" + code="$2" shift 2 disable $name check_as "$@" <<EOF && enable $name -void foo(void){ __asm__ volatile($asm); } +void foo(void){ __asm__ volatile($code); } EOF } |