Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / inspector / ContentSearchUtils.cpp
index fb0f626..d84f74d 100644 (file)
@@ -49,7 +49,7 @@ static String createSearchRegexSource(const String& text)
 
     for (unsigned i = 0; i < text.length(); i++) {
         if (specials.find(text[i]) != kNotFound)
-            result.append("\\");
+            result.append('\\');
         result.append(text[i]);
     }