; * src/alloc.c (xrealloc): Fix typo.

This commit is contained in:
Philipp Stephani 2019-04-20 01:49:41 +02:00
parent 1a4df31ddd
commit ca02e8c00c

View file

@ -919,7 +919,7 @@ xzalloc (size_t size)
return val;
}
/* Like realloc but check for no memory and block interrupt input.. */
/* Like realloc but check for no memory and block interrupt input. */
void *
xrealloc (void *block, size_t size)