]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
formatting
authorJim Meyering <meyering@redhat.com>
Mon, 11 Oct 2010 09:55:58 +0000 (11:55 +0200)
committerJim Meyering <meyering@redhat.com>
Sat, 22 Jan 2011 11:16:43 +0000 (12:16 +0100)
src/extent-scan.c
src/extent-scan.h

index 97bb792accb716e7b9939972f91441d0fdd5e259..51609757f23bfa4da7b6de3aaddcd82f4eda3c46 100644 (file)
@@ -109,5 +109,10 @@ extent_scan_read (struct extent_scan *scan)
   return true;
 }
 #else
-extern bool extent_scan_read (ignored) { errno = ENOTSUP; return false; }
+extern bool
+extent_scan_read (struct extent_scan *scan ATTRIBUTE_UNUSED)
+{
+  errno = ENOTSUP;
+  return false;
+}
 #endif
index 3119c8df115043c1e7836c07ce205b7524f171bb..ac9e5006fc5b4a49eb939e89498e1c2c1232ae9c 100644 (file)
@@ -55,11 +55,9 @@ struct extent_scan
   struct extent_info *ext_info;
 };
 
-void
-extent_scan_init (int src_fd, struct extent_scan *scan);
+void extent_scan_init (int src_fd, struct extent_scan *scan);
 
-bool
-extent_scan_read (struct extent_scan *scan);
+bool extent_scan_read (struct extent_scan *scan);
 
 static inline void
 extent_scan_free (struct extent_scan *scan)