diff src/util/logview.c @ 7226:e6693a0ec8e1 HEAD

Renamed T_FRAME_BEGIN/END to T_BEGIN/END. Removed T_FRAME() macro and replaced them with T_BEGIN/END calls. T_FRAME() made it difficult to debug code with gdb.
author Timo Sirainen <tss@iki.fi>
date Mon, 11 Feb 2008 20:17:00 +0200
parents 7ed926ed7aa4
children 6930859e7a5a
line wrap: on
line diff
--- a/src/util/logview.c	Mon Feb 11 19:58:43 2008 +0200
+++ b/src/util/logview.c	Mon Feb 11 20:17:00 2008 +0200
@@ -291,9 +291,9 @@
 
 	dump_hdr(fd);
 	do {
-		T_FRAME(
+		T_BEGIN {
 			ret = dump_record(fd);
-		);
+		} T_END;
 	} while (ret > 0);
 	return 0;
 }