diff src/layout.c @ 506:fc9c8a3e1a8b

Handle the newline in DEBUG_N() macro instead of adding one in each debug message string.
author zas_
date Thu, 24 Apr 2008 00:15:03 +0000
parents 1bac19d5a663
children 135570a8bd96
line wrap: on
line diff
--- a/src/layout.c	Wed Apr 23 23:52:20 2008 +0000
+++ b/src/layout.c	Thu Apr 24 00:15:03 2008 +0000
@@ -1032,7 +1032,7 @@
 {
 	if (!layout_valid(&lw)) return;
 
-	DEBUG_1("layout refresh\n");
+	DEBUG_1("layout refresh");
 
 	layout_refresh_lists(lw);
 
@@ -1053,7 +1053,7 @@
 
 		if (new_time > 0 && new_time > lw->last_time)
 			{
-			DEBUG_1("layout path time changed, refreshing...\n");
+			DEBUG_1("layout path time changed, refreshing...");
 			layout_refresh_by_time(lw);
 			}
 		}