summaryrefslogtreecommitdiffstats
path: root/third_party
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-25 21:49:47 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-25 21:49:47 +0000
commit66d202e51a6b195d0b738d3f6cfcf23059ce5534 (patch)
treed818a79ee16ae63cf1e718bf22207d419a00b0bd /third_party
parentc96d4abe1cfd7d3bc406909e7d9e8d89dd9ced96 (diff)
downloadchromium_src-66d202e51a6b195d0b738d3f6cfcf23059ce5534.zip
chromium_src-66d202e51a6b195d0b738d3f6cfcf23059ce5534.tar.gz
chromium_src-66d202e51a6b195d0b738d3f6cfcf23059ce5534.tar.bz2
Fix a few \r\ns I accidentally added to a comment.
TEST=none BUG=none Review URL: http://codereview.chromium.org/245006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27257 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r--third_party/tcmalloc/port.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/tcmalloc/port.cc b/third_party/tcmalloc/port.cc
index 4a22dda..3902ca7 100644
--- a/third_party/tcmalloc/port.cc
+++ b/third_party/tcmalloc/port.cc
@@ -195,8 +195,8 @@ extern void* TCMalloc_SystemAlloc(size_t size, size_t *actual_size,
if (alignment < pagesize) alignment = pagesize;
size = ((size + alignment - 1) / alignment) * alignment;
- // Report the total number of bytes the OS actually delivered. This might be
- // greater than |size| because of alignment concerns. The full size is
+ // Report the total number of bytes the OS actually delivered. This might be
+ // greater than |size| because of alignment concerns. The full size is
// necessary so that adjacent spans can be coalesced.
// TODO(antonm): proper processing of alignments
// in actual_size and decommitting.