util/anon_file: const string param

Fixes: c0376a1234 ("util: add anon_file.h for all memfd/temp file usage")
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Tested-by: Eric Anholt <eric@anholt.net>
Tested-by: Andreas Baierl <ichgeh@imkreisrum.de>
This commit is contained in:
Eric Engestrom 2019-08-08 10:45:08 +01:00
parent 8a028b0df2
commit 525a917c6c
2 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ create_tmpfile_cloexec(char *tmpname)
* SCM_RIGHTS methods.
*/
int
os_create_anonymous_file(off_t size, char *debug_name)
os_create_anonymous_file(off_t size, const char *debug_name)
{
int fd, ret;
#ifdef __FreeBSD__

View File

@ -28,6 +28,6 @@
#include <sys/types.h>
int os_create_anonymous_file(off_t size, char *debug_name);
int os_create_anonymous_file(off_t size, const char *debug_name);
#endif