Changeset 142684 in webkit


Ignore:
Timestamp:
Feb 12, 2013 3:53:00 PM (11 years ago)
Author:
alecflett@chromium.org
Message:

Fix signedness in WebTestProxy
https://bugs.webkit.org/show_bug.cgi?id=109623

Reviewed by Adam Barth.

Fix signedness problem, using size_t instead of int.

  • DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r142681 r142684  
     12013-02-12  Alec Flett  <alecflett@chromium.org>
     2
     3        Fix signedness in WebTestProxy
     4        https://bugs.webkit.org/show_bug.cgi?id=109623
     5
     6        Reviewed by Adam Barth.
     7
     8        Fix signedness problem, using size_t instead of int.
     9
     10        * DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp:
     11
    1122013-02-12  Raymond Toy  <rtoy@google.com>
    213
  • trunk/Tools/DumpRenderTree/chromium/TestRunner/src/WebTestProxy.cpp

    r142643 r142684  
    390390{
    391391    result.append("\n============== Back Forward List ==============\n");
    392     for (int index = 0; index < history.size(); ++index)
     392    for (size_t index = 0; index < history.size(); ++index)
    393393        result.append(dumpHistoryItem(history[index], 8, index == currentEntryIndex));
    394394    result.append("===============================================\n");
Note: See TracChangeset for help on using the changeset viewer.