Index: Source/core/html/HTMLObjectElement.cpp |
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp |
index 4c81b74b9a6640bf7a4dbd297692417458573d4c..16d88294f5d365e44c56a665938c010275ce95c8 100644 |
--- a/Source/core/html/HTMLObjectElement.cpp |
+++ b/Source/core/html/HTMLObjectElement.cpp |
@@ -124,7 +124,7 @@ static void mapDataParamToSrc(Vector<String>* paramNames, Vector<String>* paramV |
// Some plugins don't understand the "data" attribute of the OBJECT tag (i.e. Real and WMP |
// require "src" attribute). |
int srcIndex = -1, dataIndex = -1; |
- for (unsigned int i = 0; i < paramNames->size(); ++i) { |
+ for (unsigned i = 0; i < paramNames->size(); ++i) { |
if (equalIgnoringCase((*paramNames)[i], "src")) |
srcIndex = i; |
else if (equalIgnoringCase((*paramNames)[i], "data")) |