diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2023-10-02 22:06:44 +0300 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2023-10-02 22:10:16 +0300 |
commit | a09d6494397bdd28a3254d2e646212afb5a3049c (patch) | |
tree | 3bf4525bd15138b48ddbef73f72cb5f0c4b45a7b /include/render/allocator | |
parent | 0fdbdc36c05fb2811a8b7bc5a69e4d104287cff7 (diff) |
docs: replace the less commonly used "::" with "."
Diffstat (limited to 'include/render/allocator')
-rw-r--r-- | include/render/allocator/drm_dumb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/render/allocator/drm_dumb.h b/include/render/allocator/drm_dumb.h index 7e37acfb..23c150bc 100644 --- a/include/render/allocator/drm_dumb.h +++ b/include/render/allocator/drm_dumb.h @@ -7,7 +7,7 @@ struct wlr_drm_dumb_buffer { struct wlr_buffer base; - struct wl_list link; // wlr_drm_dumb_allocator::buffers + struct wl_list link; // wlr_drm_dumb_allocator.buffers int drm_fd; // -1 if the allocator has been destroyed struct wlr_dmabuf_attributes dmabuf; @@ -23,7 +23,7 @@ struct wlr_drm_dumb_buffer { struct wlr_drm_dumb_allocator { struct wlr_allocator base; - struct wl_list buffers; // wlr_drm_dumb_buffer::link + struct wl_list buffers; // wlr_drm_dumb_buffer.link int drm_fd; }; |