git: 53b77089e5ca - main - Remove unused variables in msun/bsdsrc/b_tgamma.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 09 Aug 2025 17:29:13 UTC
The branch main has been updated by dim:
URL: https://cgit.FreeBSD.org/src/commit/?id=53b77089e5cacb1ae863c3f70b3e6f286ca71df5
commit 53b77089e5cacb1ae863c3f70b3e6f286ca71df5
Author: Steve Kargl <kargl@FreeBSD.org>
AuthorDate: 2025-08-09 17:24:08 +0000
Commit: Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2025-08-09 17:25:25 +0000
Remove unused variables in msun/bsdsrc/b_tgamma.c
PR: 288736
MFC after: 3 days
---
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) {