summaryrefslogtreecommitdiffstats
path: root/cpukit
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2010-06-16 14:31:48 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2010-06-16 14:31:48 +0000
commitf639680a480f737775e62695017d55eeca42cb09 (patch)
tree1a3783e6c64e7d89c6f88e18199cdf164ccd826e /cpukit
parent2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f639680a480f737775e62695017d55eeca42cb09.tar.bz2
2010-06-16 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1556/cpukit * libfs/src/rfs/rtems-rfs-shell.c: Remove rtems_rfs_shell_cmd_t.
Diffstat (limited to 'cpukit')
-rw-r--r--cpukit/ChangeLog5
-rw-r--r--cpukit/libfs/src/rfs/rtems-rfs-shell.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog
index d952dc1caa..f28e5f8373 100644
--- a/cpukit/ChangeLog
+++ b/cpukit/ChangeLog
@@ -1,3 +1,8 @@
+2010-06-16 Ralf Corsépius <ralf.corsepius@rtems.org>
+
+ PR 1556/cpukit
+ * libfs/src/rfs/rtems-rfs-shell.c: Remove rtems_rfs_shell_cmd_t.
+
2010-06-15 Ralf Corsépius <ralf.corsepius@rtems.org>
PR 1566/filesystem
diff --git a/cpukit/libfs/src/rfs/rtems-rfs-shell.c b/cpukit/libfs/src/rfs/rtems-rfs-shell.c
index 953f86d12d..b8033b5456 100644
--- a/cpukit/libfs/src/rfs/rtems-rfs-shell.c
+++ b/cpukit/libfs/src/rfs/rtems-rfs-shell.c
@@ -42,7 +42,7 @@ typedef int (*rtems_rfs_shell_handler) (rtems_rfs_file_system* fs, int argc, cha
/**
* Table of handlers we parse to invoke the command.
*/
-typedef struct rtems_rfs_shell_cmd_t
+typedef struct
{
const char* name;
rtems_rfs_shell_handler handler;