* More GCC 2.95 compatibility.

This commit is contained in:
Eelco Dolstra 2005-12-25 11:29:12 +00:00
parent 52d20ef124
commit 0f8d3c871b

View file

@ -451,7 +451,7 @@ void Database::enumTable(const Transaction & txn, TableId table,
checkInterrupt();
string data((char *) kt.get_data(), kt.get_size());
if (!keyPrefix.empty() &&
data.compare(0, keyPrefix.size(), keyPrefix) != 0)
string(data, 0, keyPrefix.size()) != keyPrefix)
break;
keys.push_back(data);
flags = DB_NEXT;