diff options
author | Daniel Stenberg <daniel@haxx.se> | 2016-02-10 13:49:42 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2016-02-10 13:49:42 +0100 |
commit | 5f835fb266b3c05a94092479342879b42332a5e0 (patch) | |
tree | 957ad428a57822c67cf6164a5ddfe357a77c785b /scripts | |
parent | 3a47657648e7da633b22f8a962a53c3fa67c553b (diff) | |
download | curl-5f835fb266b3c05a94092479342879b42332a5e0.tar.gz |
contributors.sh: make 79 the max column width (from 80)
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contributors.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/contributors.sh b/scripts/contributors.sh index a7aba1c8d..a4eec0d2e 100755 --- a/scripts/contributors.sh +++ b/scripts/contributors.sh @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2013-2015, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 2013-2016, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -72,7 +72,7 @@ awk '{ num++; n = sprintf("%s%s%s,", n, length(n)?" ":"", $0); #print n; - if(length(n) > 78) { + if(length(n) > 77) { printf(" %s\n", p); n=sprintf("%s,", $0); } |