(sort_files): Put `volatile' in the right place.
authorJim Meyering <jim@meyering.net>
Sun, 27 Jul 2003 06:34:52 +0000 (06:34 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 27 Jul 2003 06:34:52 +0000 (06:34 +0000)
src/ls.c

index a058a7d..1570ad0 100644 (file)
--- 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)
     {