diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-05-04 18:17:55 -0400 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-05-11 03:51:01 -0400 |
commit | e427e019c46bc1d04cbe75e00106e4c96785bf68 (patch) | |
tree | a8b21e37ab38cface69276751b652a037d415431 /render/drm_format_set.c | |
parent | e6879616e731e6bc2109fbe50610c8c606e8228a (diff) |
wlr_drm_format: Don't take double pointer in wlr_drm_format_add
Diffstat (limited to 'render/drm_format_set.c')
-rw-r--r-- | render/drm_format_set.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/render/drm_format_set.c b/render/drm_format_set.c index 6b917193..2412144c 100644 --- a/render/drm_format_set.c +++ b/render/drm_format_set.c @@ -61,14 +61,14 @@ bool wlr_drm_format_set_add(struct wlr_drm_format_set *set, uint32_t format, struct wlr_drm_format **ptr = format_set_get_ref(set, format); if (ptr) { - return wlr_drm_format_add(ptr, modifier); + return wlr_drm_format_add(*ptr, modifier); } struct wlr_drm_format *fmt = wlr_drm_format_create(format); if (!fmt) { return false; } - if (!wlr_drm_format_add(&fmt, modifier)) { + if (!wlr_drm_format_add(fmt, modifier)) { wlr_drm_format_finish(fmt); return false; } @@ -114,9 +114,7 @@ bool wlr_drm_format_has(const struct wlr_drm_format *fmt, uint64_t modifier) { return false; } -bool wlr_drm_format_add(struct wlr_drm_format **fmt_ptr, uint64_t modifier) { - struct wlr_drm_format *fmt = *fmt_ptr; - +bool wlr_drm_format_add(struct wlr_drm_format *fmt, uint64_t modifier) { if (wlr_drm_format_has(fmt, modifier)) { return true; } |