summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/dosfs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2014-01-31 12:28:47 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2014-02-03 17:45:33 -0600
commitba386a632e5314abefd3cc062b4e7b84af002cf1 (patch)
tree3eccafb15cfc66ac262acd60c86e1c6c2e401764 /cpukit/libfs/src/dosfs
parentcalloc.c: Remove use of register keyword (diff)
downloadrtems-ba386a632e5314abefd3cc062b4e7b84af002cf1.tar.bz2
dosfs/fat.c: Remove use of register keyword
Diffstat (limited to 'cpukit/libfs/src/dosfs')
-rw-r--r--cpukit/libfs/src/dosfs/fat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libfs/src/dosfs/fat.c b/cpukit/libfs/src/dosfs/fat.c
index 92e81d3b8b..59f53091ca 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];