mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Minor constification.
This commit is contained in:
parent
3f5187f276
commit
df6989b848
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue