Changeset 2592 in kBuild for trunk/src/kmk/vpath.c
- Timestamp:
- Jun 17, 2012 10:50:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/vpath.c
r2591 r2592 292 292 Usually this is maxelem - 1. If not, shrink down. */ 293 293 if (elem < (maxelem - 1)) 294 vpath = xrealloc (vpath, (elem+1) * sizeof (const char *));294 vpath = (const char **)xrealloc (vpath, (elem+1) * sizeof (const char *)); 295 295 296 296 /* Put the nil-pointer terminator on the end of the VPATH list. */
Note:
See TracChangeset
for help on using the changeset viewer.