2010-08-13 Chris Johns <chrisj@rtems.org>

* libfs/src/imfs/imfs_eval.c: Add the missing ';' for the debug
        case.
This commit is contained in:
Chris Johns
2010-08-13 04:49:31 +00:00
parent 92101deff8
commit c3367ade01
2 changed files with 7 additions and 2 deletions

View File

@@ -1,3 +1,8 @@
2010-08-13 Chris Johns <chrisj@rtems.org>
* libfs/src/imfs/imfs_eval.c: Add the missing ';' for the debug
case.
2010-08-11 Sebastian Huber <sebastian.huber@embedded-brains.de> 2010-08-11 Sebastian Huber <sebastian.huber@embedded-brains.de>
* sapi/include/confdefs.h: Include <rtems.h> to resolve all * sapi/include/confdefs.h: Include <rtems.h> to resolve all

View File

@@ -173,8 +173,8 @@ int IMFS_evaluate_sym_link(
/* /*
* Check for things that should never happen. * Check for things that should never happen.
*/ */
IMFS_assert( jnode->type == IMFS_SYM_LINK ) IMFS_assert( jnode->type == IMFS_SYM_LINK );
IMFS_assert( jnode->Parent ) IMFS_assert( jnode->Parent );
/* /*
* Move the node_access to either the symbolic links parent or * Move the node_access to either the symbolic links parent or