From 6d5fb366901b5f79598a2cf34697fd185abf3658 Mon Sep 17 00:00:00 2001
From: Guillem Jover <guillem@hadrons.org>
Date: Fri, 3 Sep 2010 05:21:34 +0200
Status: applied
Subject: [PATCH] statfs.2: Fix copy & paste error for __SWORD_TYPE definition

The statfs structs only make use of __SWORD_TYPE, so the __UWORD_TYPE
macro is wrong there.

Signed-off-by: Guillem Jover <guillem@hadrons.org>
---
 man2/statfs.2 |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/man2/statfs.2 b/man2/statfs.2
index ea2f085..e0e5988 100644
--- a/man2/statfs.2
+++ b/man2/statfs.2
@@ -46,7 +46,7 @@ structure defined approximately as follows:
 .in +4n
 .nf
 #if __WORDSIZE == 32		/* System word size */
-# define __UWORD_TYPE		unsigned int
+# define __SWORD_TYPE		int
 #else /* __WORDSIZE == 64 */
 # define __SWORD_TYPE		long int
 #endif
-- 
1.7.1

