From 0a82b3cb7fe50ed5949d6c3da003ce8e1afe5d8d Mon Sep 17 00:00:00 2001 From: GeoDaoyu Date: Mon, 3 Nov 2025 09:13:10 +0800 Subject: [PATCH] chore: fix C lint errors (issue #8358) --- .../math/base/special/fresnels/test/fixtures/c/cephes/runner.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/node_modules/@stdlib/math/base/special/fresnels/test/fixtures/c/cephes/runner.c b/lib/node_modules/@stdlib/math/base/special/fresnels/test/fixtures/c/cephes/runner.c index c2c7054fffe3..1a334b642b49 100644 --- a/lib/node_modules/@stdlib/math/base/special/fresnels/test/fixtures/c/cephes/runner.c +++ b/lib/node_modules/@stdlib/math/base/special/fresnels/test/fixtures/c/cephes/runner.c @@ -117,7 +117,7 @@ void write_data_as_json( FILE *f, const double *x, const double *S, const unsign * @param len number of values in the domain * @param name output filename */ -void generate( double *x, const unsigned int len, const char *name ) { +void generate( const double *x, const unsigned int len, const char *name ) { unsigned int i; double *S; double C;