Module: Mesa
Branch: master
Commit: 874db83e24fb5195dea69094a58afb8b88e2a7f7
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=874db83e24fb5195dea69094a58afb8b88e2a7f7

Author: Marek Olšák <[email protected]>
Date:   Fri Sep 29 22:31:21 2017 +0200

egl/dri2: don't use the template keyword

for C++ editors

Reviewed-by: Brian Paul <[email protected]>

---

 src/egl/drivers/dri2/platform_wayland.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/egl/drivers/dri2/platform_wayland.c 
b/src/egl/drivers/dri2/platform_wayland.c
index dc6fcc1d07..ae3347756b 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);
 

_______________________________________________
mesa-commit mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to