aboutsummaryrefslogtreecommitdiff
path: root/shm.c
diff options
context:
space:
mode:
authorDaniel Eklöf <daniel@ekloef.se>2021-04-18 19:50:01 +0200
committerDaniel Eklöf <daniel@ekloef.se>2021-04-18 19:50:01 +0200
commitd4729fdae017bd5069e0632d039599595eca499c (patch)
tree7cff446c17d11ad5ee12df5836b6df4436562eff /shm.c
parentd647eb0bae21b4d7114a0f3aaf4e12c924aa709b (diff)
downloadwbg-d4729fdae017bd5069e0632d039599595eca499c.tar.gz
shm: fix copy-paste typo in memfd name; this is wbg, not fuzzel
Diffstat (limited to 'shm.c')
-rw-r--r--shm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/shm.c b/shm.c
index e9f2ef3..adc91df 100644
--- a/shm.c
+++ b/shm.c
@@ -53,7 +53,7 @@ shm_get_buffer(struct wl_shm *shm, int width, int height, unsigned long cookie)
pixman_image_t *pix = NULL;
/* Backing memory for SHM */
- pool_fd = memfd_create("fuzzel-wayland-shm-buffer-pool", MFD_CLOEXEC);
+ pool_fd = memfd_create("wbg-wayland-shm-buffer-pool", MFD_CLOEXEC);
if (pool_fd == -1) {
LOG_ERRNO("failed to create SHM backing memory file");
goto err;