Is there some particular reason why the simple
while loop tests

    while (count-- > 0) {
       fprintf(stderr, "=");
    }

and

    while (width-- > 0) {
       fprintf(stderr, " ");
    }

would not work properly? The insertions "> 0" are
new in relation to the public software. This make
the while loops trivially skipped for negative
parameters.

Would

    width = abs(misc_screen_width());

and 

    count = abs(width * gauge->value / 100);

improve robustness?



-- 
To UNSUBSCRIBE, email to debian-bugs-rc-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org

Reply via email to