From cadea7923e5d852ae4ca0d93f46c7290b0f4c889 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 1 Dec 2011 08:01:40 +0000 Subject: =?UTF-8?q?2011-12-01=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/src/open.c: Use va_arg(..., mode_t) to retrieve mode. --- cpukit/libcsupport/src/open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libcsupport') diff --git a/cpukit/libcsupport/src/open.c b/cpukit/libcsupport/src/open.c index a49ebfec0d..a2e1b507e3 100644 --- a/cpukit/libcsupport/src/open.c +++ b/cpukit/libcsupport/src/open.c @@ -64,7 +64,7 @@ int open( ) { va_list ap; - int mode; + mode_t mode; int rc; rtems_libio_t *iop = 0; int status; @@ -84,7 +84,7 @@ int open( va_start(ap, flags); - mode = va_arg( ap, int ); + mode = va_arg( ap, mode_t ); /* * NOTE: This comment is OBSOLETE. The proper way to do this now -- cgit v1.2.3