summaryrefslogtreecommitdiff
path: root/isofs
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1999-06-13 19:25:05 +0000
committerRoland McGrath <roland@gnu.org>1999-06-13 19:25:05 +0000
commitc81cebe4b704d7a74c5110e736d662d247903515 (patch)
tree4004e21e61e148a79544b12af3c64bac435436a0 /isofs
parenta853b46cd14d2473880eaa72445e46894e287b68 (diff)
1999-06-13 Roland McGrath <roland@baalperazim.frob.com>
* lookup.c (diskfs_get_directs): Add cast to silence warning.
Diffstat (limited to 'isofs')
-rw-r--r--isofs/lookup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isofs/lookup.c b/isofs/lookup.c
index f5c216ea..d7c2db39 100644
--- a/isofs/lookup.c
+++ b/isofs/lookup.c
@@ -308,7 +308,7 @@ diskfs_get_directs (struct node *dp,
}
/* See if there's room to hold this one */
- name = rr.valid & VALID_NM ? rr.name : ep->name;
+ name = rr.valid & VALID_NM ? rr.name : (char *) ep->name;
namlen = rr.valid & VALID_NM ? strlen (name) : ep->namelen;
/* Name frobnication */