From: Sergey Poznyakoff Date: Sat, 3 Jan 2004 22:26:30 +0000 (+0000) Subject: (time_to_start_writing): Changed data type. X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftar;a=commitdiff_plain;h=bda7d590108e6703d0d9f70fac5ae9635b7fd154 (time_to_start_writing): Changed data type. --- 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; {