Renamed pass and total_passes to ui_pass and ui_total_passes in class Packer.

committer: mfx <mfx> 975421199 +0000
This commit is contained in:
Markus F.X.J. Oberhumer
2000-11-28 14:19:59 +00:00
parent 5abb6eb61a
commit c350efb3d0
4 changed files with 33 additions and 33 deletions
+3 -3
View File
@@ -126,9 +126,9 @@ void PackUnix::pack(OutputFile *fo)
// compress blocks
unsigned total_in = 0;
unsigned total_out = 0;
this->total_passes = (file_size + blocksize - 1) / blocksize;
if (this->total_passes == 1)
this->total_passes = 0;
ui_total_passes = (file_size + blocksize - 1) / blocksize;
if (ui_total_passes == 1)
ui_total_passes = 0;
fi->seek(0, SEEK_SET);
for (;;)
{