From 707b2f9a9469b23575fc14c16fde028b8983e856 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 30 Apr 2009 22:53:47 +0000 Subject: [PATCH] Cosmetical. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30525 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- .../gui/chart/BigtimeChartAxisLegendSource.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/debuganalyzer/gui/chart/BigtimeChartAxisLegendSource.cpp b/src/apps/debuganalyzer/gui/chart/BigtimeChartAxisLegendSource.cpp index d79718310e..2c7a89ac36 100644 --- a/src/apps/debuganalyzer/gui/chart/BigtimeChartAxisLegendSource.cpp +++ b/src/apps/debuganalyzer/gui/chart/BigtimeChartAxisLegendSource.cpp @@ -90,9 +90,9 @@ printf("BigtimeChartAxisLegendSource::GetAxisLegends(): range: %lld - %lld\n", s // TODO: Drop superfluous micro seconds digits, or even microseconds and seconds // completely. - StringChartLegend* legend = new(std::nothrow) StringChartLegend(buffer, - 1); - if (legend == 0) + StringChartLegend* legend + = new(std::nothrow) StringChartLegend(buffer, 1); + if (legend == NULL) return count; legends[count] = legend;