win: Remove printfs from net/proxy/dhcp unittests.
commit8a75ea25526322bbbb78fe4d0f7d12b1a435b0ed
authorthakis <thakis@chromium.org>
Wed, 26 Nov 2014 04:25:22 +0000 (25 20:25 -0800)
committerCommit bot <commit-bot@chromium.org>
Wed, 26 Nov 2014 04:25:37 +0000 (26 04:25 +0000)
treed301a2278a05cf9e6e045276bafcc0655ad69ac0
parent8abe562e61631d7866f2e7b36bbfb8264fe6344f
win: Remove printfs from net/proxy/dhcp unittests.

One of the printfs uses %d with a size_t, which isn't correct on
64bit builds. Since tests shouldn't print anyway, just delete all
printfs from this file. Fixes this clang warning:

..\..\net\proxy\dhcp_proxy_script_fetcher_win_unittest.cc(87,59) :  warning(clang): format specifies type 'int' but the argument has type 'size_type' (aka 'unsigned long long') [-Wformat]
    printf("Result code %d PAC data length %d\n", result, pac_text_.size());
                                           ~~             ^~~~~~~~~~~~~~~~
                                           %llu
1 warning generated.

BUG=82385

Review URL: https://codereview.chromium.org/755313008

Cr-Commit-Position: refs/heads/master@{#305780}
net/proxy/dhcp_proxy_script_fetcher_win_unittest.cc