1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-16 15:11:52 +00:00

Minor constification.

This commit is contained in:
Poul-Henning Kamp 2003-07-29 11:16:14 +00:00
parent 3f5187f276
commit df6989b848
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=118153

View File

@ -303,7 +303,7 @@ void (*_malloc_message)(const char *p1, const char *p2, const char *p3,
const char *p4) = wrtmessage;
static void
wrterror(char *p)
wrterror(char const *p)
{
suicide = 1;
@ -861,7 +861,7 @@ irealloc(void *ptr, size_t size)
*/
static __inline__ void
free_pages(void *ptr, u_long index, struct pginfo *info)
free_pages(void *ptr, u_long index, struct pginfo const *info)
{
u_long i;
struct pgfree *pf, *pt=0;