diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-04-05 13:58:23 +0900 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-04-13 14:37:53 +0900 |
commit | 555206cf6041c0ab8c83f3a9860cd794a7be255c (patch) | |
tree | e7b3d316008d1cda7c6863a9c2aa0780a70b9f6c /include | |
parent | 99b92b4104bf7bdd7663289c71f6cf0933e16a0f (diff) |
Fix gcc string truncation warnings
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_output.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_output.h b/include/wlr/types/wlr_output.h index cc03452d..cef3fc5d 100644 --- a/include/wlr/types/wlr_output.h +++ b/include/wlr/types/wlr_output.h @@ -55,7 +55,7 @@ struct wlr_output { struct wl_global *wl_global; struct wl_list wl_resources; - char name[16]; + char name[24]; char make[48]; char model[16]; char serial[16]; |