# | Line 1 | Line 1 | |
---|---|---|
1 | – | /* Copyright (c) 1998 Silicon Graphics, Inc. */ |
2 | – | |
1 | #ifndef lint | |
2 | < | static char SCCSid[] = "$SunId$ SGI"; |
2 | > | static const char RCSid[] = "$Id$"; |
3 | #endif | |
6 | – | |
4 | /* | |
5 | * Quadtree driver support routines. | |
6 | */ | |
# | Line 89 | Line 86 | int really; | |
86 | } | |
87 | /* else "really" means free up memory */ | |
88 | for (i = 0; twigbundle[i] != NULL; i++) | |
89 | < | free((char *)twigbundle[i]); |
90 | < | free((char *)twigbundle); |
89 | > | free((void *)twigbundle[i]); |
90 | > | free((void *)twigbundle); |
91 | twigbundle = NULL; | |
92 | } | |
93 |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |