From 025793417a03c165d8f9d2d7c403ed51faf528da Mon Sep 17 00:00:00 2001 From: Stefano Ceccherini Date: Sun, 26 Jun 2005 06:26:03 +0000 Subject: [PATCH] Added \n to the debug strings, so we get the output git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13279 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/preferences/time/TimeWindow.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/preferences/time/TimeWindow.cpp b/src/preferences/time/TimeWindow.cpp index 0f530aaf82..0058b1758f 100644 --- a/src/preferences/time/TimeWindow.cpp +++ b/src/preferences/time/TimeWindow.cpp @@ -99,11 +99,11 @@ TTimeWindow::InitWindow() f_TimeSettings = new TSettingsView(bounds); if (f_BaseView->StartWatchingAll(f_TimeSettings) != B_OK) - printf("StartWatchingAll(TimeSettings) failed!!!"); + printf("StartWatchingAll(TimeSettings) failed!!!\n"); f_TimeZones = new TZoneView(bounds); if (f_BaseView->StartWatchingAll(f_TimeZones) != B_OK) - printf("TimeZones->StartWatchingAll(TimeZone) failed!!!"); + printf("TimeZones->StartWatchingAll(TimeZone) failed!!!\n"); // add tabs BTab *tab; tab = new BTab();