mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-03 17:59:07 -04:00
14 lines
433 B
Plaintext
14 lines
433 B
Plaintext
$NetBSD: patch-aa,v 1.2 2013/07/05 16:12:31 ryoon Exp $
|
|
|
|
--- src/oformat_parser.c.orig 2013-03-19 21:25:31.000000000 +0000
|
|
+++ src/oformat_parser.c
|
|
@@ -335,7 +335,7 @@ char splt_of_get_number_of_digits_from_t
|
|
}
|
|
|
|
long minutes = total_time / 100 / 60;
|
|
- int i = (int) (log10l((long double) minutes));
|
|
+ int i = (int) (log10((double) minutes));
|
|
char number_of_digits = (char) (i + '1');
|
|
if (number_of_digits == '1')
|
|
{
|