From 247b9af02bd0d40109cc0ca40116a960c9f530e7 Mon Sep 17 00:00:00 2001 From: Allan McRae Date: Mon, 15 Jul 2013 14:14:46 +1000 Subject: Do not refer to FlySpray numbers These references to bug numbers assume we will forever be using that bug tracker. It is better to properly comment the code instead (which was done in almost all cases anyway). Signed-off-by: Allan McRae --- src/pacman/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pacman/util.c') diff --git a/src/pacman/util.c b/src/pacman/util.c index 23c4009a..9eb0042e 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -1094,7 +1094,7 @@ double humanize_size(off_t bytes, const char target_unit, int precision, *label = labels[index]; } - /* fix FS#27924 so that it doesn't display negative zeroes */ + /* do not display negative zeroes */ if(precision >= 0 && val < 0.0 && val > (-0.5 / simple_pow(10, precision))) { val = 0.0; @@ -1531,7 +1531,7 @@ static int question(short preset, const char *format, va_list args) } /* if stdin is piped, response does not get printed out, and as a result - * a \n is missing, resulting in broken output (FS#27909) */ + * a \n is missing, resulting in broken output */ if(!isatty(fd_in)) { fprintf(stream, "%s\n", response); } -- cgit v1.2.3-24-g4f1b