From 443ee5ac7c8187fc45aa7518122b4b30375035df Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Wed, 16 Jun 2010 14:32:21 +0000 Subject: [PATCH] =?UTF-8?q?2010-06-16=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR 1556/cpukit * libfs/src/rfs/rtems-rfs-shell.c: Remove rtems_rfs_shell_cmd_t. --- cpukit/ChangeLog | 5 +++++ cpukit/libfs/src/rfs/rtems-rfs-shell.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index fe964aa23b..35145b7423 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2010-06-16 Ralf Corsépius + + PR 1556/cpukit + * libfs/src/rfs/rtems-rfs-shell.c: Remove rtems_rfs_shell_cmd_t. + 2010-06-15 Ralf Corsépius 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;