diff options
author | Jim Meyering <jim@meyering.net> | 2003-07-27 06:34:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-07-27 06:34:52 +0000 |
commit | b595cc6f24ce1165458fb2fedebdafe3b9671463 (patch) | |
tree | cbb41fd490f9a3f4450c90e5850fbb05ec71b3f3 /src | |
parent | e206ab7b6f6e242eac54a75ff5885f4d9adb00d0 (diff) | |
download | coreutils-b595cc6f24ce1165458fb2fedebdafe3b9671463.tar.xz |
(sort_files): Put `volatile' in the right place.
Diffstat (limited to 'src')
-rw-r--r-- | src/ls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2695,7 +2695,7 @@ sort_files (void) { /* `func' must be `volatile', so it can't be clobbered by a `longjmp' into this function. */ - volatile int (*func) (V, V); + int (* volatile func) (V, V); switch (sort_type) { |