summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unixlibc.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-01-08 17:58:43 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-01-08 17:58:43 +0000
commit580f0241770b1f823f5b1a7e350a14746c05b7de (patch)
tree79c9567ac1d85aa612012a5b0ffa1354c0c22373 /cpukit/libcsupport/src/unixlibc.c
parent2006-01-08 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-580f0241770b1f823f5b1a7e350a14746c05b7de.tar.bz2
2006-01-08 Joel Sherrill <joel@OARcorp.com>
* libcsupport/src/unixlibc.c, libfs/src/imfs/ioman.c: Change rtems_io_register_name to take a const char *.
Diffstat (limited to '')
-rw-r--r--cpukit/libcsupport/src/unixlibc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/unixlibc.c b/cpukit/libcsupport/src/unixlibc.c
index 67d2d4f509..79cc5e19c1 100644
--- a/cpukit/libcsupport/src/unixlibc.c
+++ b/cpukit/libcsupport/src/unixlibc.c
@@ -18,9 +18,9 @@
#include <rtems.h>
rtems_status_code rtems_io_register_name(
- char *device_name,
- rtems_device_major_number major,
- rtems_device_minor_number minor
+ const char *device_name,
+ rtems_device_major_number major,
+ rtems_device_minor_number minor
)
{
return 0; /* not supported */