summaryrefslogtreecommitdiff
path: root/vmsfunctions.c
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2006-04-09 22:09:24 +0000
committerPaul Smith <psmith@gnu.org>2006-04-09 22:09:24 +0000
commitc25294ad3ba1252a0d77bf63a27758a0eee4259e (patch)
tree3a3bed68bb3377d1a2a28ef8e1a56a269bc7b675 /vmsfunctions.c
parentf222b19158a91b121af29a6a8eb5d74aa591078a (diff)
downloadgunmake-c25294ad3ba1252a0d77bf63a27758a0eee4259e.tar.gz
Another round of cleanups:
- Add more warnings. - Rename variables that mask out-scope vars with the same name. - Remove all casts of return values from xmalloc, xrealloc, and alloca. - Remove casts of the first argument to xrealloc. - Convert all bcopy/bzero/bcmp invocations to use memcp/memmove/memset/memcmp.
Diffstat (limited to 'vmsfunctions.c')
-rw-r--r--vmsfunctions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vmsfunctions.c b/vmsfunctions.c
index 8cb0ddd..589a721 100644
--- a/vmsfunctions.c
+++ b/vmsfunctions.c
@@ -37,7 +37,7 @@ opendir (char *dspec)
struct DIR *dir = (struct DIR *)xmalloc (sizeof (struct DIR));
struct NAM *dnam = (struct NAM *)xmalloc (sizeof (struct NAM));
struct FAB *dfab = &dir->fab;
- char *searchspec = (char *)xmalloc (MAXNAMLEN + 1);
+ char *searchspec = xmalloc (MAXNAMLEN + 1);
memset (dir, 0, sizeof *dir);