summaryrefslogtreecommitdiff
path: root/lout
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-02-25 20:36:24 +0100
committerSebastian Geerken <devnull@localhost>2014-02-25 20:36:24 +0100
commit0da1c79ee1994dba655a4bb5c1a1c9fc0623b560 (patch)
tree3eef41ea2a4a9a34445c15c0f9f72407f91d8584 /lout
parentb14b3f370a8e812269f55a8214b122523507824c (diff)
Even more RTFL.
Diffstat (limited to 'lout')
-rw-r--r--lout/container.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/lout/container.cc b/lout/container.cc
index 06c023b9..602553d3 100644
--- a/lout/container.cc
+++ b/lout/container.cc
@@ -211,8 +211,9 @@ int Vector::bsearch(Object *key, bool mustExist, int start, int end,
// new implementation.
DBG_OBJ_MSGF ("container", 0,
- "<b>bsearch</b> (<i>key</i>, %s, %d, %d, <i>comparator</i>",
- mustExist ? "true" : "false", start, end);
+ "<b>bsearch</b> (<i>key</i>, %s, %d, %d, <i>comparator</i>) "
+ "[size is %d]",
+ mustExist ? "true" : "false", start, end, size ());
DBG_OBJ_MSG_START ();
int result = -123; // Compiler happiness: GCC 4.7 does not handle this?