diff options
Diffstat (limited to 'lib/rbot')
-rw-r--r-- | lib/rbot/registry/bdb.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbot/registry/bdb.rb b/lib/rbot/registry/bdb.rb index d1876ac5..2403ec0e 100644 --- a/lib/rbot/registry/bdb.rb +++ b/lib/rbot/registry/bdb.rb @@ -36,7 +36,7 @@ module BDB class CIBtree < Btree def bdb_bt_compare(a, b) if a == nil || b == nil - warning "CIBTree: comparing #{a.inspect} (#{self[a].inspect}) with #{b.inspect} (#{self[b].inspect})" + warning "CIBTree: comparing key #{a.inspect} with #{b.inspect}" end (a||'').downcase <=> (b||'').downcase end |