From: Marek Olšák Date: Fri, 29 Sep 2017 20:31:21 +0000 (+0200) Subject: egl/dri2: don't use the template keyword X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=874db83e24fb5195dea69094a58afb8b88e2a7f7;p=mesa.git egl/dri2: don't use the template keyword for C++ editors Reviewed-by: Brian Paul --- diff --git a/src/egl/drivers/dri2/platform_wayland.c b/src/egl/drivers/dri2/platform_wayland.c index dc6fcc1d072..ae3347756bc 100644 --- a/src/egl/drivers/dri2/platform_wayland.c +++ b/src/egl/drivers/dri2/platform_wayland.c @@ -1451,7 +1451,7 @@ create_tmpfile_cloexec(char *tmpname) static int os_create_anonymous_file(off_t size) { - static const char template[] = "/mesa-shared-XXXXXX"; + static const char templ[] = "/mesa-shared-XXXXXX"; const char *path; char *name; int fd; @@ -1463,12 +1463,12 @@ os_create_anonymous_file(off_t size) return -1; } - name = malloc(strlen(path) + sizeof(template)); + name = malloc(strlen(path) + sizeof(templ)); if (!name) return -1; strcpy(name, path); - strcat(name, template); + strcat(name, templ); fd = create_tmpfile_cloexec(name);