summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/src/open.c4
1 files changed, 2 insertions, 2 deletions
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