aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-avr32
diff options
context:
space:
mode:
authorHaavard Skinnemoen <hskinnemoen@atmel.com>2007-02-09 12:01:02 +0100
committerHaavard Skinnemoen <hskinnemoen@atmel.com>2007-02-09 15:01:59 +0100
commita3b0277d1c1d754eeb9a8f994339edbd914cacda (patch)
tree15762bd661c3ab3933751f4ac18c6b2f7cbaf5b9 /include/asm-avr32
parent[AVR32] Remove last remains of libgcc (diff)
downloadlinux-dev-a3b0277d1c1d754eeb9a8f994339edbd914cacda.tar.xz
linux-dev-a3b0277d1c1d754eeb9a8f994339edbd914cacda.zip
[AVR32] ssize_t should be long, not int
Since size_t is defined as unsigned long, ssize_t ought to be long and not int. It could have been the other way around, but gcc defines size_t as unsigned long, so this is correct. This fixes a couple of printk format warnings. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'include/asm-avr32')
-rw-r--r--include/asm-avr32/posix_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-avr32/posix_types.h b/include/asm-avr32/posix_types.h
index 2831b039b349..9e255b999639 100644
--- a/include/asm-avr32/posix_types.h
+++ b/include/asm-avr32/posix_types.h
@@ -23,7 +23,7 @@ typedef unsigned short __kernel_ipc_pid_t;
typedef unsigned int __kernel_uid_t;
typedef unsigned int __kernel_gid_t;
typedef unsigned long __kernel_size_t;
-typedef int __kernel_ssize_t;
+typedef long __kernel_ssize_t;
typedef int __kernel_ptrdiff_t;
typedef long __kernel_time_t;
typedef long __kernel_suseconds_t;