aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/hash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hash.cpp b/src/hash.cpp
index d477aff..3fb4f52 100644
--- a/src/hash.cpp
+++ b/src/hash.cpp
@@ -45,7 +45,7 @@ template<> bool __cmpHashKeys<const char *>( const char *a, const char *b )
45 return true; 45 return true;
46 46
47 for(; *a == *b; a++, b++ ) 47 for(; *a == *b; a++, b++ )
48 if( *a == '\0' && *b == '\0' ) 48 if( *a == '\0' )
49 return true; 49 return true;
50 50
51 return false; 51 return false;