aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2020-01-07 22:03:35 +0100
committerGitHub <noreply@github.com>2020-01-07 22:03:35 +0100
commit6cd3a80bf5d015ec9c6dc601720a418c17ffa340 (patch)
treebae2918cc2329008e3ad8000ec3135159ce1544a /src
parenta76be01b5b5b7ae6d650ecd79acecd22b3275371 (diff)
parent18ba7b3dfcf1142227eacd8e76d4086a3d8292f4 (diff)
downloadPROJ-6cd3a80bf5d015ec9c6dc601720a418c17ffa340.tar.gz
PROJ-6cd3a80bf5d015ec9c6dc601720a418c17ffa340.zip
Merge pull request #1831 from rouault/projinfo_no
projinfo: use No. abbreviation instead of UTF-8 character (fixes #1828)
Diffstat (limited to 'src')
-rw-r--r--src/apps/projinfo.cpp4
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;