git: c28c2cd5a546 - stable/14 - Remove unused variables in msun/bsdsrc/b_tgamma.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 14 Aug 2025 18:32:45 UTC
The branch stable/14 has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=c28c2cd5a546b78fea7fe89533f9d042d4135eb4
commit c28c2cd5a546b78fea7fe89533f9d042d4135eb4
Author: Steve Kargl <kargl@FreeBSD.org>
AuthorDate: 2025-08-09 17:24:08 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2025-08-14 18:32:21 +0000
Remove unused variables in msun/bsdsrc/b_tgamma.c
PR: 288736
MFC after: 3 days
(cherry picked from commit 53b77089e5cacb1ae863c3f70b3e6f286ca71df5)
---
lib/msun/bsdsrc/b_tgamma.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/msun/bsdsrc/b_tgamma.c b/lib/msun/bsdsrc/b_tgamma.c
index 8369477c18b7..a7e97bc777c3 100644
--- a/lib/msun/bsdsrc/b_tgamma.c
+++ b/lib/msun/bsdsrc/b_tgamma.c
@@ -259,7 +259,7 @@ small_gam(double x)
static double
smaller_gam(double x)
{
- double d, rhi, rlo, t, xhi, xlo;
+ double d, t, xhi, xlo;
struct Double r;
if (x < x0 + left) {