Title: [124602] trunk/Tools
Revision
124602
Author
ma...@webkit.org
Date
2012-08-03 05:56:21 -0700 (Fri, 03 Aug 2012)

Log Message

Unreviewed build fix for GTK after r124581.

* DumpRenderTree/gtk/DumpRenderTree.cpp:
(runTest): Fix wrong variable name in ASSERT.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (124601 => 124602)


--- trunk/Tools/ChangeLog	2012-08-03 12:54:23 UTC (rev 124601)
+++ trunk/Tools/ChangeLog	2012-08-03 12:56:21 UTC (rev 124602)
@@ -1,3 +1,10 @@
+2012-08-03  Mario Sanchez Prada  <msanc...@igalia.com>
+
+        Unreviewed build fix for GTK after r124581.
+
+        * DumpRenderTree/gtk/DumpRenderTree.cpp:
+        (runTest): Fix wrong variable name in ASSERT.
+
 2012-08-03  Oswald Buddenhagen  <oswald.buddenha...@nokia.com>
 
         [Qt] Always save CONFIG & DEFINES in default_pre

Modified: trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp (124601 => 124602)


--- trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp	2012-08-03 12:54:23 UTC (rev 124601)
+++ trunk/Tools/DumpRenderTree/gtk/DumpRenderTree.cpp	2012-08-03 12:56:21 UTC (rev 124602)
@@ -97,7 +97,7 @@
 
 const unsigned historyItemIndent = 8;
 
-static void runTest(const string& testPathOrURL);
+static void runTest(const string& inputLine);
 
 static void didRunInsecureContent(WebKitWebFrame*, WebKitSecurityOrigin*, const char* url);
 
@@ -688,7 +688,7 @@
 
 static void runTest(const string& inputLine)
 {
-    ASSERT(!testPathOrURL.empty());
+    ASSERT(!inputLine.empty());
 
     TestCommand command = parseInputLine(inputLine);
     string& testURL = command.pathOrURL;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to