diff --git a/src/expand-common.h b/src/expand-common.h index 5b20d018a..faca01013 100644 --- a/src/expand-common.h +++ b/src/expand-common.h @@ -15,8 +15,9 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ -/* Column numbers are nonnegative, with the leftmost column being zero. */ -typedef uintmax_t colno; +/* Column numbers are nonnegative, with the leftmost column being zero. + Use a signed type, as that allows for better checking. */ +typedef intmax_t colno; /* If true, convert blanks even after nonblank characters have been read on the line. */