diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2021-03-07 20:29:06 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2021-03-07 20:31:43 +0100 |
| commit | d7a2bdefb8d47e8ca18c8cbceb1a07290cb46ff7 (patch) | |
| tree | c4dccaa34df9e76d40f510f6519563cbd5212d1a /src/apps/proj.cpp | |
| parent | 36a5a178cbd8c338a294ed5528462e65faf20a3d (diff) | |
| download | PROJ-d7a2bdefb8d47e8ca18c8cbceb1a07290cb46ff7.tar.gz PROJ-d7a2bdefb8d47e8ca18c8cbceb1a07290cb46ff7.zip | |
typo fixes
Diffstat (limited to 'src/apps/proj.cpp')
| -rw-r--r-- | src/apps/proj.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/apps/proj.cpp b/src/apps/proj.cpp index 0108cb74..93f1ce7b 100644 --- a/src/apps/proj.cpp +++ b/src/apps/proj.cpp @@ -21,7 +21,7 @@ #define MAX_LINE 1000 #define MAX_PARGS 100 -#define PJ_INVERS(P) (P->inv ? 1 : 0) +#define PJ_INVERSE(P) (P->inv ? 1 : 0) static PJ *Proj; static union { @@ -219,7 +219,7 @@ static void vprocess(FILE *fid) { linvers = inverse; if (linvers) { - if (!PJ_INVERS(Proj)) { + if (!PJ_INVERSE(Proj)) { emess(-1,"inverse for this projection not avail.\n"); continue; } |
