Index: Source/core/dom/Document.cpp |
diff --git a/Source/core/dom/Document.cpp b/Source/core/dom/Document.cpp |
index 8fad2f67af0fe5bb8c11d4597345ff54b76aeecc..8518bf998c9e67807636a52dd56604938a5e5e73 100644 |
--- a/Source/core/dom/Document.cpp |
+++ b/Source/core/dom/Document.cpp |
@@ -4081,8 +4081,8 @@ String Document::queryCommandValue(const String& commandName) |
KURL Document::openSearchDescriptionURL() |
{ |
- static const char* const openSearchMIMEType = "application/opensearchdescription+xml"; |
- static const char* const openSearchRelation = "search"; |
+ static const char openSearchMIMEType[] = "application/opensearchdescription+xml"; |
+ static const char openSearchRelation[] = "search"; |
// FIXME: Why do only top-level frames have openSearchDescriptionURLs? |
if (!frame() || frame()->tree().parent()) |