summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unmount.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-09-15 09:42:46 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-09-15 09:42:46 +0000
commit2e8737ad5efaafec7c831bd3d92514926c8a78df (patch)
treedbf7e1026e37fbd32a9cf4694e250c113bf95370 /cpukit/libcsupport/src/unmount.c
parent2009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-2e8737ad5efaafec7c831bd3d92514926c8a78df.tar.bz2
Add __attribute__((unused)) to function arguments.
Diffstat (limited to 'cpukit/libcsupport/src/unmount.c')
-rw-r--r--cpukit/libcsupport/src/unmount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/libcsupport/src/unmount.c b/cpukit/libcsupport/src/unmount.c
index 774df9931d..60cfd12416 100644
--- a/cpukit/libcsupport/src/unmount.c
+++ b/cpukit/libcsupport/src/unmount.c
@@ -64,9 +64,9 @@ bool rtems_filesystem_nodes_equal(
*/
bool file_systems_below_this_mountpoint(
- const char *path,
+ const char *path __attribute__((unused)),
rtems_filesystem_location_info_t *fs_root_loc,
- rtems_filesystem_mount_table_entry_t *fs_to_unmount
+ rtems_filesystem_mount_table_entry_t *fs_to_unmount __attribute__((unused))
)
{
rtems_chain_node *the_node;