From: Jim Meyering Date: Sun, 27 Jul 2003 06:34:52 +0000 (+0000) Subject: (sort_files): Put `volatile' in the right place. X-Git-Tag: v5.0.90~52 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b595cc6f24ce1165458fb2fedebdafe3b9671463;p=thirdparty%2Fcoreutils.git (sort_files): Put `volatile' in the right place. --- diff --git a/src/ls.c b/src/ls.c index a058a7d90e..1570ad0941 100644 --- a/src/ls.c +++ b/src/ls.c @@ -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) {