git.asbjorn.biz
/
swftools.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0ee8042
)
fixed '=' instead of '==' in if
author
Matthias Kramm
<kramm@quiss.org>
Sat, 7 Feb 2009 22:43:05 +0000
(23:43 +0100)
committer
Matthias Kramm
<kramm@quiss.org>
Sat, 7 Feb 2009 22:43:05 +0000
(23:43 +0100)
lib/as3/ok/arrays.as
patch
|
blob
|
history
diff --git
a/lib/as3/ok/arrays.as
b/lib/as3/ok/arrays.as
index
ff2f8ee
..
1d9261b
100644
(file)
--- a/
lib/as3/ok/arrays.as
+++ b/
lib/as3/ok/arrays.as
@@
-14,7
+14,7
@@
package {
if(b[0]==1) trace("ok 5/8");
if(b[1]==2) trace("ok 6/8");
if(b[2]==3) trace("ok 7/8");
- if(b.length=3) trace("ok 8/8");
+ if(b.length==3) trace("ok 8/8");
trace("[exit]");
}