From b595cc6f24ce1165458fb2fedebdafe3b9671463 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 27 Jul 2003 06:34:52 +0000 Subject: [PATCH] (sort_files): Put `volatile' in the right place. --- src/ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.47.2