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 21:38:05 +0100 |
| commit | 18ba7b3dfcf1142227eacd8e76d4086a3d8292f4 (patch) | |
| tree | bae2918cc2329008e3ad8000ec3135159ce1544a /src/apps/projinfo.cpp | |
| parent | a76be01b5b5b7ae6d650ecd79acecd22b3275371 (diff) | |
| download | PROJ-18ba7b3dfcf1142227eacd8e76d4086a3d8292f4.tar.gz PROJ-18ba7b3dfcf1142227eacd8e76d4086a3d8292f4.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; |
