]> Dogcows Code - chaz/tar/commitdiff
(time_to_start_writing): Changed data type.
authorSergey Poznyakoff <gray@gnu.org.ua>
Sat, 3 Jan 2004 22:26:30 +0000 (22:26 +0000)
committerSergey Poznyakoff <gray@gnu.org.ua>
Sat, 3 Jan 2004 22:26:30 +0000 (22:26 +0000)
src/update.c

index c7e03192c5d9314687d26dcd4f3c4d9d1dac9539..f98dbb0493235a1988e655aaa898e69cd2bdbe5d 100644 (file)
@@ -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;
 
   {
This page took 0.025235 seconds and 4 git commands to generate.