diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2017-02-26 13:36:32 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2017-02-26 13:39:00 +0100 |
| commit | abb21adb39de752b427e1e6fc66d94cfc9c3ee04 (patch) | |
| tree | 81ed826114ede8567148b92871896ae7412d9cac /src/pj_param.c | |
| parent | 8eb46dbbb63d7a880ac787561c907491cffc0917 (diff) | |
| download | PROJ-abb21adb39de752b427e1e6fc66d94cfc9c3ee04.tar.gz PROJ-abb21adb39de752b427e1e6fc66d94cfc9c3ee04.zip | |
Fix MSVC warnings and add /Wx to appveyor.yml
Diffstat (limited to 'src/pj_param.c')
| -rw-r--r-- | src/pj_param.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pj_param.c b/src/pj_param.c index 24c2354e..93f5cf53 100644 --- a/src/pj_param.c +++ b/src/pj_param.c @@ -45,7 +45,7 @@ pj_param(projCtx ctx, paralist *pl, const char *opt) { type = *opt++; /* simple linear lookup */ - l = strlen(opt); + l = (int)strlen(opt); while (pl && !(!strncmp(pl->param, opt, l) && (!pl->param[l] || pl->param[l] == '='))) pl = pl->next; |
