summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Engestrom <eric.engestrom@intel.com>2019-08-08 10:45:08 +0100
committerJuan A. Suarez Romero <jasuarez@igalia.com>2019-10-02 09:41:27 -0400
commite5e81d653036eb7f2b2bc93507d5535e91ac62c3 (patch)
tree27a53acd338eddb5a054d722ca658f2524c736dc
parentb13396622c5320183b704201ee1c18be1eb2e4f9 (diff)
downloadmesa-e5e81d653036eb7f2b2bc93507d5535e91ac62c3.tar.gz
util/anon_file: const string param
Fixes: c0376a123418df0050dc ("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> (cherry picked from commit 525a917c6c2a166d72ca83295f6ea32a5d6d83a7)
-rw-r--r--src/util/anon_file.c2
-rw-r--r--src/util/anon_file.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/util/anon_file.c b/src/util/anon_file.c
index c05ed94fdfe..2780c74a680 100644
--- a/src/util/anon_file.c
+++ b/src/util/anon_file.c
@@ -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__
diff --git a/src/util/anon_file.h b/src/util/anon_file.h
index 8bec8d5458b..2984ea2c485 100644
--- a/src/util/anon_file.h
+++ b/src/util/anon_file.h
@@ -29,6 +29,6 @@
#include <sys/types.h>
#include "util/macros.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