realloc() to char *.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13291
dc483132-0cff-0310-8789-
dd5450dbe970
+2001-06-07 Ezra Peisach <epeisach@mit.edu>
+
+ * request_tbl.c (ss_add_request_table): Do not cast argument to
+ realloc() to char *.
+
2001-04-17 Ken Raeburn <raeburn@mit.edu>
* Makefile.in (unixmac): Target deleted.
;
/* size == C subscript of NULL == #elements */
size += 2; /* new element, and NULL */
- info->rqt_tables = (ssrt **)realloc((char *)info->rqt_tables,
+ info->rqt_tables = (ssrt **)realloc(info->rqt_tables,
(unsigned)size*sizeof(ssrt));
if (info->rqt_tables == (ssrt **)NULL) {
*code_ptr = errno;