diff options
author | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-02-22 13:06:26 +0000 |
---|---|---|
committer | IOhannes m zmölnig <zmoelnig@users.sourceforge.net> | 2012-02-22 13:06:26 +0000 |
commit | f6fec7ce034ae5018f36206f85a0e4e9ec59e6cb (patch) | |
tree | eaf0d22179338d07d5b92bfba74132c9166d68eb /src/mtx_spherical_harmonics | |
parent | e9079368fc8aaf7f3dae8d4e98a6756c1fcb913a (diff) |
less unsigned/signed warnings
svn path=/trunk/externals/iem/iemmatrix/; revision=16027
Diffstat (limited to 'src/mtx_spherical_harmonics')
-rw-r--r-- | src/mtx_spherical_harmonics/legendre_a.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mtx_spherical_harmonics/legendre_a.c b/src/mtx_spherical_harmonics/legendre_a.c index a6c2aa5..aa42949 100644 --- a/src/mtx_spherical_harmonics/legendre_a.c +++ b/src/mtx_spherical_harmonics/legendre_a.c @@ -17,7 +17,8 @@ #include "mtx_spherical_harmonics/legendre_a.h" static void legendre_first_recurrence (double *sintheta, LegendreWorkSpace *wl) { - int n,l,l0; + int n; + unsigned int l,l0; int nmo0=0; int n0=1; const int incr=(wl->nmax+1)*(wl->nmax+2)/2; |