git-gui: Brown paper bag fix division by 0 in blame
commitf6f2aa39ef97cae03c71ecfecc334f0df60d7920
authorShawn O. Pearce <spearce@spearce.org>
Wed, 4 Apr 2007 16:08:46 +0000 (4 12:08 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Wed, 4 Apr 2007 16:08:46 +0000 (4 12:08 -0400)
treeb8dfb1c6a158a5bf99aedb58e4acddf61064189b
parent2ec0cb7959b0bf965d54f95453f5b4b34e8d3100
git-gui: Brown paper bag fix division by 0 in blame

If we generate a blame status string before we have obtained
any annotation data at all from the input file, or if the input
file is empty, our total_lines will be 0.  This causes a division
by 0 error when we blindly divide by the 0 to compute the total
percentage of lines loaded.  Instead we should report 0% done.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
git-gui.sh