2011-12-01 Ralf Corsépius <ralf.corsepius@rtems.org>

* libcsupport/src/open.c: Use va_arg(..., mode_t) to retrieve mode.
This commit is contained in:
Ralf Corsepius
2011-12-01 08:01:40 +00:00
parent 6940c38237
commit cadea7923e
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,5 +1,6 @@
2011-12-01 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/open.c: Use va_arg(..., mode_t) to retrieve mode.
* posix/src/mqueueopen.c: Use va_arg(..., mode_t) to retrieve mode.
* posix/src/semopen.c: Use va_arg(..., mode_t) to retrieve mode.
+2 -2
View File
@@ -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