summaryrefslogtreecommitdiffstats
path: root/third_party/tcmalloc/port.cc
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/tcmalloc/port.cc')
-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.