mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Remove incorrect 'const' qualifier from pointers to dynamic string
buffers I added in the previous commit. Pointy hat to: jhb MFC after: 1 month
This commit is contained in:
parent
ed59e60276
commit
bf59b2c504
1 changed files with 1 additions and 1 deletions
|
|
@ -894,7 +894,7 @@ print_arg(struct syscall_args *sc, unsigned long *args, long retval,
|
|||
tmp = strdup(xlookup_bits(mprot_flags, args[sc->offset]));
|
||||
break;
|
||||
case Mmapflags: {
|
||||
const char *base, *alignstr;
|
||||
char *base, *alignstr;
|
||||
int align, flags;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue