diff options
author | Alexander Orzechowski <alex@ozal.ski> | 2023-10-03 01:51:07 -0400 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-10-03 01:51:07 -0400 |
commit | 1b0694b79481643cb456d03e1be50a1b4f6ca591 (patch) | |
tree | c693c5de3ee7ebd52873f6ec063118408f0bd28a /render/vulkan/texture.c | |
parent | a09d6494397bdd28a3254d2e646212afb5a3049c (diff) |
treewide: Migrate from sizeof(struct) to sizeof(*pointer) where practical
Diffstat (limited to 'render/vulkan/texture.c')
-rw-r--r-- | render/vulkan/texture.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/render/vulkan/texture.c b/render/vulkan/texture.c index 83a22c81..65ea22ba 100644 --- a/render/vulkan/texture.c +++ b/render/vulkan/texture.c @@ -256,8 +256,7 @@ static const struct wlr_texture_impl texture_impl = { static struct wlr_vk_texture *vulkan_texture_create( struct wlr_vk_renderer *renderer, uint32_t width, uint32_t height) { - struct wlr_vk_texture *texture = - calloc(1, sizeof(struct wlr_vk_texture)); + struct wlr_vk_texture *texture = calloc(1, sizeof(*texture)); if (texture == NULL) { wlr_log_errno(WLR_ERROR, "Allocation failed"); return NULL; |