From bda7d590108e6703d0d9f70fac5ae9635b7fd154 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Sat, 3 Jan 2004 22:26:30 +0000 Subject: [PATCH] (time_to_start_writing): Changed data type. --- src/update.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/update.c b/src/update.c index c7e0319..f98dbb0 100644 --- a/src/update.c +++ b/src/update.c @@ -32,8 +32,10 @@ extern union block *current_block; /* We've hit the end of the old stuff, and its time to start writing new stuff to the tape. This involves seeking back one record and - re-writing the current record (which has been changed). */ -int time_to_start_writing; + re-writing the current record (which has been changed). + FIXME: Either eliminate it or move it to common.h. +*/ +bool time_to_start_writing; /* Pointer to where we started to write in the first record we write out. This is used if we can't backspace the output and have to null out the @@ -175,7 +177,7 @@ update_archive (void) } reset_eof (); - time_to_start_writing = 1; + time_to_start_writing = true; output_start = current_block->buffer; { -- 2.45.2