diff options
author | Jim Meyering <jim@meyering.net> | 2007-01-24 00:22:45 +0100 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2007-01-24 00:22:45 +0100 |
commit | 1f7d56fda5db9c5bd62eb9cc3ae543c00499a68f (patch) | |
tree | eaee8422c1cc22183f13697f5b488ab8797a7142 /src | |
parent | f33168da952e13e4ee99e1531ac41643b78addd4 (diff) | |
download | coreutils-1f7d56fda5db9c5bd62eb9cc3ae543c00499a68f.tar.xz |
* NEWS: sort temp file compression: tweak wording.
* src/sort.c (struct sortfile) [name]: Declare member to be const.
Diffstat (limited to 'src')
-rw-r--r-- | src/sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sort.c b/src/sort.c index 31421cff6..693b902f0 100644 --- a/src/sort.c +++ b/src/sort.c @@ -459,7 +459,7 @@ static struct tempnode *volatile *temptail = &temphead; struct sortfile { - char *name; + char const *name; pid_t pid; /* If compressed, the pid of compressor, else zero */ }; |