summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1995-11-02 17:11:51 +0000
committerJim Meyering <jim@meyering.net>1995-11-02 17:11:51 +0000
commit83b9d5e9ef387bc03370917940efa78e2e26845b (patch)
treea8c3f2c032aec5434ef534f9220dbaca8162550f /src
parenta2b0b9846dad4c3f2ddfaef8d1d90aa76075f4dd (diff)
downloadcoreutils-83b9d5e9ef387bc03370917940efa78e2e26845b.tar.xz
Add `const' attribute to some parameters.
Diffstat (limited to 'src')
-rw-r--r--src/unexpand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/unexpand.c b/src/unexpand.c
index 0fd738ad0..c019ce07f 100644
--- a/src/unexpand.c
+++ b/src/unexpand.c
@@ -124,7 +124,7 @@ add_tabstop (int tabval)
to the list of tabstops. */
static void
-parse_tabstops (char *stops)
+parse_tabstops (const char *stops)
{
int tabval = -1;
@@ -152,7 +152,7 @@ parse_tabstops (char *stops)
contains only nonzero, ascending values. */
static void
-validate_tabstops (int *tabs, int entries)
+validate_tabstops (const int *tabs, int entries)
{
int prev_tab = 0;
int i;