| Index: base/metrics/sparse_histogram.cc
|
| diff --git a/base/metrics/sparse_histogram.cc b/base/metrics/sparse_histogram.cc
|
| index deba570059427d60493a24f3725657e13e259ce3..a8dfbeb757bcdb28d9b014436efe779bcdbc6be3 100644
|
| --- a/base/metrics/sparse_histogram.cc
|
| +++ b/base/metrics/sparse_histogram.cc
|
| @@ -282,8 +282,8 @@ void SparseHistogram::WriteAsciiHeader(const Count total_count,
|
| "Histogram: %s recorded %d samples",
|
| histogram_name().c_str(),
|
| total_count);
|
| - if (flags() & ~kHexRangePrintingFlag)
|
| - StringAppendF(output, " (flags = 0x%x)", flags() & ~kHexRangePrintingFlag);
|
| + if (flags())
|
| + StringAppendF(output, " (flags = 0x%x)", flags());
|
| }
|
|
|
| } // namespace base
|
|
|