summaryrefslogtreecommitdiff
path: root/src/expand.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-10-24 07:28:39 +0000
committerJim Meyering <jim@meyering.net>2005-10-24 07:28:39 +0000
commit57d5938b174238e4c70619ee64652c93679810ed (patch)
treea560ea9a41197c422db8688c38e8c8924a8d3633 /src/expand.c
parent48e6b742788d317fb78bb0730a2d18c779c72a5b (diff)
downloadcoreutils-57d5938b174238e4c70619ee64652c93679810ed.tar.gz
* src/expand.c (parse_tab_stops): Add comment to make this function
identical to the one in unexpand.c. * src/unexpand.c (parse_tab_stops): Adjust syntax to make this function identical to the one in expand.c.
Diffstat (limited to 'src/expand.c')
-rw-r--r--src/expand.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expand.c b/src/expand.c
index bf857b0e4..b1b100422 100644
--- a/src/expand.c
+++ b/src/expand.c
@@ -172,6 +172,7 @@ parse_tab_stops (char const *stops)
num_start = stops;
}
+ /* Detect overflow. */
if (!DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', uintmax_t))
{
size_t len = strspn (num_start, "0123456789");