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:
2e8685a
)
added \n to error messages
author
Matthias Kramm
<kramm@quiss.org>
Fri, 23 Jan 2009 23:01:30 +0000
(15:01 -0800)
committer
Matthias Kramm
<kramm@quiss.org>
Fri, 23 Jan 2009 23:01:30 +0000
(15:01 -0800)
lib/modules/swftools.c
patch
|
blob
|
history
diff --git
a/lib/modules/swftools.c
b/lib/modules/swftools.c
index
ddc8694
..
0a55645
100644
(file)
--- a/
lib/modules/swftools.c
+++ b/
lib/modules/swftools.c
@@
-30,7
+30,7
@@
SFIXED RFXSWF_SP(SFIXED a1,SFIXED a2,SFIXED b1,SFIXED b2)
{ S64 a = ((S64)a1*(S64)b1+(S64)a2*(S64)b2)>>16;
SFIXED result = (SFIXED)(a);
if(a!=result)
- fprintf(stderr, "Warning: overflow in matrix multiplication");
+ fprintf(stderr, "Warning: overflow in matrix multiplication\n");
return result;
}
SFIXED RFXSWF_QFIX(int zaehler,int nenner) // bildet Quotient von zwei INTs in SFIXED
@@
-999,7
+999,7
@@
char swf_Relocate (SWF*swf, char*bitmap)
}
}
if(t==65536) {
- fprintf(stderr, "swf_Relocate: Couldn't relocate: Out of IDs");
+ fprintf(stderr, "swf_Relocate: Couldn't relocate: Out of IDs\n");
return 0;
}
}