diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2021-10-02 08:29:27 +0200 |
---|---|---|
committer | Simon Ser <contact@emersion.fr> | 2021-10-02 10:22:13 +0200 |
commit | dc3d1530bf58ca68ac81d2a809cc416ff7f71938 (patch) | |
tree | 8c7eb8556a8bdca96e664922b7c19f5869c8c7c8 /backend/drm | |
parent | 323b8498ad42c94cb8fe6e93a633ef093a53b081 (diff) |
Fix spelling errors
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Diffstat (limited to 'backend/drm')
-rw-r--r-- | backend/drm/bo_handle_table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/drm/bo_handle_table.c b/backend/drm/bo_handle_table.c index 026194ce..479168b4 100644 --- a/backend/drm/bo_handle_table.c +++ b/backend/drm/bo_handle_table.c @@ -18,7 +18,7 @@ bool drm_bo_handle_table_ref(struct wlr_drm_bo_handle_table *table, assert(handle != 0); if (handle > table->len) { - // Grow linearily, because we don't expect the number of BOs to explode + // Grow linearly, because we don't expect the number of BOs to explode size_t len = align(handle + 1, 512); size_t *nrefs = realloc(table->nrefs, len * sizeof(size_t)); if (nrefs == NULL) { |