- submitter becomes maintainer - Makefile tidied, and passes portlint -C - rc.d file corrected; now passes rclint - port now installs documentation (PDF), not previously included - added DOCS option, controlling installation of above - files in /usr/local/share now in directories that actually match the name of the port PR: 212242 Submitted by: bob@eager.cx
11 lines
577 B
C
11 lines
577 B
C
--- regutil/regtrig.c.orig 2014-06-22 03:53:33 UTC
|
|
+++ regutil/regtrig.c
|
|
@@ -124,7 +124,7 @@ static void FormatResult(double res, uns
|
|
}
|
|
else
|
|
/* format the result */
|
|
- result->strlength = sprintf( result->strptr, "%.*f", precision, res );
|
|
+ result->strlength = sprintf( result->strptr, "%.*f", (int) precision, res );
|
|
/* end in a period? */
|
|
if (result->strptr[result->strlength - 1] == '.')
|
|
result->strlength--; /* remove the period */
|