* 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(); checkInterrupt();
string data((char *) kt.get_data(), kt.get_size()); string data((char *) kt.get_data(), kt.get_size());
if (!keyPrefix.empty() && if (!keyPrefix.empty() &&
data.compare(0, keyPrefix.size(), keyPrefix) != 0) string(data, 0, keyPrefix.size()) != keyPrefix)
break; break;
keys.push_back(data); keys.push_back(data);
flags = DB_NEXT; flags = DB_NEXT;