diff options
| author | Kristian Evers <kristianevers@gmail.com> | 2018-12-20 08:50:58 +0100 |
|---|---|---|
| committer | Kristian Evers <kristianevers@gmail.com> | 2018-12-20 08:50:58 +0100 |
| commit | fbc8d776d75deccf98296bc6406e5be68dcef3f2 (patch) | |
| tree | 1ab4aa49d52bd871a243ed85a3f1dead212a30f7 | |
| parent | c0515e59827ada854e05500056f259edd47af934 (diff) | |
| download | PROJ-fbc8d776d75deccf98296bc6406e5be68dcef3f2.tar.gz PROJ-fbc8d776d75deccf98296bc6406e5be68dcef3f2.zip | |
Return error message that match the error
We only want to allow angular input to proj, so it shouldn't say that it
doesn't want angular input. Especially when it does so on receiving
non-angular input.
| -rw-r--r-- | src/proj.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -496,7 +496,7 @@ int main(int argc, char **argv) { pj_strerrno(pj_errno)); if (!proj_angular_input(Proj, PJ_FWD)) { - emess(3, "can't initialize operations that take angular input coordinates"); + emess(3, "can't initialize operations that take non-angular input coordinates"); exit(0); } |
