[rtems commit] dosfs/fat.c: Remove use of register keyword

Joel Sherrill joel at rtems.org
Mon Feb 3 23:38:16 UTC 2014


Module:    rtems
Branch:    master
Commit:    ba386a632e5314abefd3cc062b4e7b84af002cf1
Changeset: http://git.rtems.org/rtems/commit/?id=ba386a632e5314abefd3cc062b4e7b84af002cf1

Author:    Joel Sherrill <joel.sherrill at oarcorp.com>
Date:      Fri Jan 31 12:28:47 2014 -0600

dosfs/fat.c: Remove use of register keyword

---

 cpukit/libfs/src/dosfs/fat.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/cpukit/libfs/src/dosfs/fat.c b/cpukit/libfs/src/dosfs/fat.c
index 92e81d3..59f5309 100644
--- a/cpukit/libfs/src/dosfs/fat.c
+++ b/cpukit/libfs/src/dosfs/fat.c
@@ -474,7 +474,7 @@ fat_init_volume_info(fat_fs_info_t *fs_info, const char *device)
 {
     rtems_status_code   sc = RTEMS_SUCCESSFUL;
     int                 rc = RC_OK;
-    register fat_vol_t *vol = &fs_info->vol;
+    fat_vol_t          *vol = &fs_info->vol;
     uint32_t            data_secs = 0;
     char                boot_rec[FAT_MAX_BPB_SIZE];
     char                fs_info_sector[FAT_USEFUL_INFO_SIZE];




More information about the vc mailing list