1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-21 08:42:23 +00:00
freebsd-ports/audio/libmp3splt/files/patch-src_oformat__parser.c
Mathieu Arnold 9fa9eb9ac7 Cleanup patches, a* categories.
Rename them to follow the make makepatch naming, and regenerate them.

With hat:	portmgr
Sponsored by:	Absolight
2016-07-26 16:51:15 +00:00

12 lines
355 B
C

--- src/oformat_parser.c.orig 2014-10-02 22:46:20 UTC
+++ src/oformat_parser.c
@@ -336,7 +336,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(minutes));
char number_of_digits = (char) (i + '1');
if (number_of_digits == '1')
{