Chromium Code Reviews| Index: src/d8.cc |
| =================================================================== |
| --- src/d8.cc (revision 1599) |
| +++ src/d8.cc (working copy) |
| @@ -97,7 +97,7 @@ |
| bool CounterMap::Match(void* key1, void* key2) { |
| const char* name1 = reinterpret_cast<const char*>(key1); |
| const char* name2 = reinterpret_cast<const char*>(key2); |
| - return strcmp(name1, name2) != 0; |
| + return strcmp(name1, name2) == 0; |
| } |