src/string.cpp
changeset 8424 4a488a90ccab
parent 7753 624cc9dddfd2
child 6872 1c4a4a609f85
child 8609 8c0c3e9dd6a0
child 9723 eee46cb39750
--- a/src/string.cpp	Mon Nov 19 20:40:14 2007 +0000
+++ b/src/string.cpp	Mon Nov 19 21:02:30 2007 +0000
@@ -214,7 +214,7 @@
 {
 	assert(c != NULL);
 
-	if (!HASBIT(s[0], 7)) {
+	if (!HasBit(s[0], 7)) {
 		/* Single byte character: 0xxxxxxx */
 		*c = s[0];
 		return 1;