Skip to content

Commit 0dd72a2

Browse files
committed
Fix lowercase option in metatile error message
1 parent bc2ffb7 commit 0dd72a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

util/mapcache_seed.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -997,7 +997,7 @@ int main(int argc, const char **argv)
997997
/* ensure our metasize is a power of 2 in drill down mode */
998998
if(seed_mode == MAPCACHE_SEED_DEPTH_FIRST) {
999999
if(!isPowerOfTwo(tileset->metasize_x) || !isPowerOfTwo(tileset->metasize_y)) {
1000-
return usage(argv[0],"metatile size is not set to a power of two, rerun with e.g -m 8,8");
1000+
return usage(argv[0],"metatile size is not set to a power of two, rerun with e.g -M 8,8");
10011001
}
10021002
}
10031003

0 commit comments

Comments
 (0)