diff options
author | Jim Meyering <jim@meyering.net> | 1995-11-02 17:11:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-11-02 17:11:51 +0000 |
commit | 83b9d5e9ef387bc03370917940efa78e2e26845b (patch) | |
tree | a8c3f2c032aec5434ef534f9220dbaca8162550f /src | |
parent | a2b0b9846dad4c3f2ddfaef8d1d90aa76075f4dd (diff) | |
download | coreutils-83b9d5e9ef387bc03370917940efa78e2e26845b.tar.xz |
Add `const' attribute to some parameters.
Diffstat (limited to 'src')
-rw-r--r-- | src/unexpand.c | 4 |
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; |