ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/loadvars.c
(Generate patch)

Comparing ray/src/common/loadvars.c (file contents):
Revision 2.10 by greg, Tue Feb 25 02:47:21 2003 UTC vs.
Revision 2.11 by greg, Wed Apr 23 00:52:33 2003 UTC

# Line 94 | Line 94 | VARIABLE       *(*mv)();
94                          while (*cp++)
95                                  ;
96                  i = cp - vp->value;
97 <                vp->value = (char *)realloc(vp->value, i+n+1);
97 >                vp->value = (char *)realloc((void *)vp->value, i+n+1);
98          } else
99                  vp->value = (char *)malloc(n+1);
100          if (vp->value == NULL) {

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines