aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-01-18 23:12:53 +0000
committerMåns Rullgård <mans@mansr.com>2010-01-18 23:12:53 +0000
commit3784e82e9cce5d5440602e573f2dbd440388d758 (patch)
treefb54ac66187b914b8fc9228ced86d008d6813f0d /configure
parentc9566115271c58aa0e6f0734c9c0c674a583d293 (diff)
downloadffmpeg-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-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 461c1b9524..8d53fb3f4e 100755
--- a/configure
+++ b/configure
@@ -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
}