From 2e3e49be617e2aba05853a4cab620090fc46f209 Mon Sep 17 00:00:00 2001 From: OSQZSS Date: Sat, 22 Aug 2015 13:47:07 +0900 Subject: [PATCH] const qualifier used more than once --- gpssim.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpssim.c b/gpssim.c index fa652ac..2add7f1 100644 --- a/gpssim.c +++ b/gpssim.c @@ -358,7 +358,7 @@ void xyz2llh(const double *xyz, double *llh) * \param[in] llh Input Array of Latitude, Longitude and Height * \param[out] xyz Output Array of X, Y and Z ECEF coordinates */ -void llh2xyz(const const double *llh, double *xyz) +void llh2xyz(const double *llh, double *xyz) { double n; double a;