diff options
author | Jim Meyering <jim@meyering.net> | 2003-04-11 10:51:56 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-04-11 10:51:56 +0000 |
commit | 6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271 (patch) | |
tree | b96ee698e2bd8020d500f01cbf6d6efa743b8a69 /src/nl.c | |
parent | eaff43d5a8173b9c576dadb8d123e3348fb1b809 (diff) | |
download | coreutils-6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271.tar.gz coreutils-6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271.tar.bz2 coreutils-6c93bdeeaa8a322b76c48ffc17a2205f6c3f5271.zip |
Remove anachronistic casts of xmalloc,
xrealloc, and xcalloc return values and of xrealloc's first argument.
Diffstat (limited to 'src/nl.c')
-rw-r--r-- | src/nl.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ /* nl -- number lines of files - Copyright (C) 89, 92, 1995-2002 Free Software Foundation, Inc. + Copyright (C) 89, 92, 1995-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -274,7 +274,7 @@ build_type_arg (char **typep, struct re_pattern_buffer *regexp) *typep = optarg++; optlen = strlen (optarg); regexp->allocated = optlen * 2; - regexp->buffer = (unsigned char *) xmalloc (regexp->allocated); + regexp->buffer = xmalloc (regexp->allocated); regexp->translate = NULL; regexp->fastmap = xmalloc (256); regexp->fastmap_accurate = 0; |