Skip to content

Commit 5e372d0

Browse files
committed
Switched off self check
1 parent 9de1640 commit 5e372d0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utility/mapcode.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#define my_isnan(x) (false)
4343
#define my_round(x) ((long) (floor((x) + 0.5)))
4444

45-
static const int SELF_CHECK = 1;
45+
static const int SELF_CHECK = 0;
4646
static const int SELF_CHECK_EXIT = 0;
4747

4848
static const int NORMAL_ERROR = 1;
@@ -116,8 +116,8 @@ static void usage(const char* appName) {
116116
printf(" The (x, y, z) coordinates are primarily meant for visualization of the data set.\n");
117117
printf("\n");
118118
printf(" Example:\n");
119-
printf(" %s -g 100 : produces a grid of 100 points as lat/lon pairs\n");
120-
printf(" %s -gXYZ 100 : produces a grid of 100 points as (x, y, z) sphere coordinates)\n");
119+
printf(" %s -g 100 : produces a grid of 100 points as lat/lon pairs\n", appName);
120+
printf(" %s -gXYZ 100 : produces a grid of 100 points as (x, y, z) sphere coordinates)\n", appName);
121121
printf("\n");
122122
printf(" Notes on the use of stdout and stderr:\n");
123123
printf(" stdout: used for outputting 3D point data; stderr: used for statistics.\n");

0 commit comments

Comments
 (0)