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:
72106a2
)
fixed bug in logf.
author
kramm
<kramm>
Wed, 16 Jan 2002 12:02:29 +0000
(12:02 +0000)
committer
kramm
<kramm>
Wed, 16 Jan 2002 12:02:29 +0000
(12:02 +0000)
lib/log.c
patch
|
blob
|
history
diff --git
a/lib/log.c
b/lib/log.c
index
ffa0e17
..
ace2987
100644
(file)
--- a/
lib/log.c
+++ b/
lib/log.c
@@
-253,7
+253,7
@@
void logf(const char* format, ...)
/* speed up hack */
if(format[0]=='<') {
char*z = "fewnvd";
- char*x = strchr(z,format[0]);
+ char*x = strchr(z,format[1]);
if(x && (x-z)>maxloglevel)
return;
}