summaryrefslogtreecommitdiffstats
path: root/media
diff options
context:
space:
mode:
authorhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-21 23:49:12 +0000
committerhclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-21 23:49:12 +0000
commit7f6135589837c30d13e0d60480f44df33db2fec2 (patch)
tree08097d07ce651be228f65e1aceb6f1f4061484f7 /media
parentb19ed717676f1dcf50e8bb530404019a3fbb308a (diff)
downloadchromium_src-7f6135589837c30d13e0d60480f44df33db2fec2.zip
chromium_src-7f6135589837c30d13e0d60480f44df33db2fec2.tar.gz
chromium_src-7f6135589837c30d13e0d60480f44df33db2fec2.tar.bz2
Fixing build bustage caused by r26759
TBR=ajwong StringPrintf should use %u instead of %zd. Review URL: http://codereview.chromium.org/216042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r--media/base/video_frame_impl_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/media/base/video_frame_impl_unittest.cc b/media/base/video_frame_impl_unittest.cc
index d6b8aef..9d9573c 100644
--- a/media/base/video_frame_impl_unittest.cc
+++ b/media/base/video_frame_impl_unittest.cc
@@ -84,7 +84,7 @@ void ExpectFrameColor(media::VideoFrame* yv12_frame, uint32 expect_rgb_color) {
rgb_surface.data[VideoSurface::kRGBPlane] +
(rgb_surface.strides[VideoSurface::kRGBPlane] * row));
for (size_t col = 0; col < rgb_surface.width; ++col) {
- SCOPED_TRACE(StringPrintf("Checking (%zd, %u)", row, col));
+ SCOPED_TRACE(StringPrintf("Checking (%u, %u)", row, col));
EXPECT_EQ(expect_rgb_color, rgb_row_data[col]);
}
}