From f884f77d99965f571297a505560f947285a3225c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Sat, 2 Nov 2019 00:05:07 +0100 Subject: [PATCH] shm: fix name of memfd --- shm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shm.c b/shm.c index 7476aef5..607492ac 100644 --- a/shm.c +++ b/shm.c @@ -64,7 +64,7 @@ shm_get_buffer(struct wl_shm *shm, int width, int height, size_t copies) pixman_image_t *pix = NULL; /* Backing memory for SHM */ - pool_fd = memfd_create("f00sel-wayland-shm-buffer-pool", MFD_CLOEXEC); + pool_fd = memfd_create("foot-wayland-shm-buffer-pool", MFD_CLOEXEC); if (pool_fd == -1) { LOG_ERRNO("failed to create SHM backing memory file"); goto err;