aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcommit-check2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-check b/commit-check
index 3cfd7c6..ea3e86a 100755
--- a/commit-check
+++ b/commit-check
@@ -26,7 +26,7 @@ while (<$commitfile>) {
}
err "Should be empty" if $lineno == 2 && /.+/;
- err "Longer than 80 characters" if /^.{73,}/;
+ err "Longer than 72 characters" if /^.{73,}/;
}
close $commitfile;