diff options
| author | Even Rouault <even.rouault@spatialys.com> | 2020-01-07 21:38:05 +0100 |
|---|---|---|
| committer | Even Rouault <even.rouault@spatialys.com> | 2020-01-07 22:02:11 +0100 |
| commit | 91e360027bad225b7914b1fe7bdecfa73124a39c (patch) | |
| tree | d4154fab44effe831f5f5dcb0c26d1d9c7747cdb /src/apps/projinfo.cpp | |
| parent | d65f44248a6d08ee83df6cfaf8d7ff2388413877 (diff) | |
| download | PROJ-91e360027bad225b7914b1fe7bdecfa73124a39c.tar.gz PROJ-91e360027bad225b7914b1fe7bdecfa73124a39c.zip | |
projinfo: use No. abbreviation instead of UTF-8 character (fixes #1828)
Diffstat (limited to 'src/apps/projinfo.cpp')
| -rw-r--r-- | src/apps/projinfo.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/apps/projinfo.cpp b/src/apps/projinfo.cpp index c1139564..8ce9eefe 100644 --- a/src/apps/projinfo.cpp +++ b/src/apps/projinfo.cpp @@ -686,9 +686,7 @@ static void outputOperations( } first = false; std::cout << "-------------------------------------" << std::endl; - std::cout << "Operation n" - "\xC2\xB0" - << (i + 1) << ":" << std::endl + std::cout << "Operation No. " << (i + 1) << ":" << std::endl << std::endl; outputOperationSummary(op, dbContext); std::cout << std::endl; |
