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:
c48b442
)
fixed bug in hex output routine
author
kramm
<kramm>
Fri, 22 Mar 2002 18:11:25 +0000
(18:11 +0000)
committer
kramm
<kramm>
Fri, 22 Mar 2002 18:11:25 +0000
(18:11 +0000)
src/swfdump.c
patch
|
blob
|
history
diff --git
a/src/swfdump.c
b/src/swfdump.c
index
572e890
..
616dbbf
100644
(file)
--- a/
src/swfdump.c
+++ b/
src/swfdump.c
@@
-624,7
+624,7
@@
int main (int argc,char ** argv)
printf(" %s-=> ",prefix);
for(t=0;t<tag->len;t++) {
printf("%02x ", tag->data[t]);
- if((t && !(t&15)) || (t==tag->len-1))
+ if((t && ((t&15)==15)) || (t==tag->len-1))
{
if(t==tag->len-1)
printf("\n");