diff options
author | Marius Kintel <marius@kintel.net> | 2012-02-08 23:48:41 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-02-08 23:48:41 (GMT) |
commit | a83fda0c3d9e92a6e47622cd1c2fdeebdfbb8c1a (patch) | |
tree | 3bf17abdd3b88c710763f289525c725a296d53a9 /src/cache.h | |
parent | 68baed4089ec78c2ddd100fe6ba5a34c112f330c (diff) |
Fixes #87 - don't mix positional and non-positional parameters with boost::format
Diffstat (limited to 'src/cache.h')
-rw-r--r-- | src/cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cache.h b/src/cache.h index ecf0c8b..ea20393 100644 --- a/src/cache.h +++ b/src/cache.h @@ -178,7 +178,7 @@ void Cache<Key,T>::trim(int m) Node *u = n; n = n->p; #ifdef DEBUG - PRINTB("Trimming cache: %1% (%d bytes)", *u->keyPtr % u->c); + PRINTB("Trimming cache: %1% (%2% bytes)", *u->keyPtr % u->c); #endif unlink(*u); } |