This is an automated email from the git hooks/post-receive script. sf pushed a commit to annotated tag v2.0.2 in repository mapcode.
commit 11f0bf9c7a82540ca84e19d004f0e52ff32271b8 Author: Rijn Buve <[email protected]> Date: Thu Jun 18 21:50:44 2015 +0200 Dev work on 1.60 --- utility/mapcode.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/utility/mapcode.cpp b/utility/mapcode.cpp index 9e3f95a..883f130 100644 --- a/utility/mapcode.cpp +++ b/utility/mapcode.cpp @@ -573,8 +573,8 @@ int main(const int argc, const char** argv) } if (argc == 3) { extraDigits = atoi(argv[2]); - if ((extraDigits < 0) || (extraDigits> 2)) { - fprintf(stderr, "error: parameter extraDigits must be in [0..2]\n\n"); + if ((extraDigits < 0) || (extraDigits> 8)) { + fprintf(stderr, "error: parameter extraDigits must be in [0..8]\n\n"); usage(appName); return NORMAL_ERROR; } @@ -652,8 +652,8 @@ int main(const int argc, const char** argv) } if (argc >= 4) { extraDigits = atoi(argv[3]); - if ((extraDigits < 0) || (extraDigits > 2)) { - fprintf(stderr, "error: parameter extraDigits must be in [0..2]\n\n"); + if ((extraDigits < 0) || (extraDigits > 8)) { + fprintf(stderr, "error: parameter extraDigits must be in [0..8]\n\n"); usage(appName); return NORMAL_ERROR; } -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-grass/mapcode.git _______________________________________________ Pkg-grass-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-grass-devel

