Ticket #2137: rtems_bugzilla_2137.patch

File rtems_bugzilla_2137.patch, 892 bytes (added by Nick Withers, on 08/09/13 at 06:42:13)

Patch adding "const void* data" parameter to rtems_rfs_rtems_initialize()'s declaration, matching its definition

  • cpukit/libfs/src/rfs/rtems-rfs.h

    From 17f68417068695668b66b65c30a4235cace0d8f3 Mon Sep 17 00:00:00 2001
    From: Nick Withers <nick.withers@anu.edu.au>
    Date: Fri, 9 Aug 2013 17:38:36 +1000
    Subject: [PATCH] Add "const void* data" parameter to
     rtems_rfs_rtems_initialize()'s declaration, matching its definition
    
    See https://www.rtems.org/bugzilla/show_bug.cgi?id=2137
    ---
     cpukit/libfs/src/rfs/rtems-rfs.h | 2 +-
     1 file changed, 1 insertion(+), 1 deletion(-)
    
    diff --git a/cpukit/libfs/src/rfs/rtems-rfs.h b/cpukit/libfs/src/rfs/rtems-rfs.h
    index ffd2f80..2f6ffc4 100644
    a b  
    3232/**
    3333 * Initialise the RFS File system.
    3434 */
    35 int rtems_rfs_rtems_initialise (rtems_filesystem_mount_table_entry_t *mt_entry);
     35int rtems_rfs_rtems_initialise (rtems_filesystem_mount_table_entry_t *mt_entry, const void *data);
    3636
    3737/**@}*/
    3838#endif