xwayland/xwm: make atom_map const
This commit is contained in:
parent
b86eea0897
commit
79be26ff1f
|
@ -86,7 +86,7 @@ enum atom_name {
|
|||
ATOM_LAST // keep last
|
||||
};
|
||||
|
||||
extern const char *atom_map[ATOM_LAST];
|
||||
extern const char *const atom_map[ATOM_LAST];
|
||||
|
||||
struct wlr_xwm {
|
||||
struct wlr_xwayland *xwayland;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
#include "util/signal.h"
|
||||
#include "xwayland/xwm.h"
|
||||
|
||||
const char *atom_map[ATOM_LAST] = {
|
||||
const char *const atom_map[ATOM_LAST] = {
|
||||
[WL_SURFACE_ID] = "WL_SURFACE_ID",
|
||||
[WM_DELETE_WINDOW] = "WM_DELETE_WINDOW",
|
||||
[WM_PROTOCOLS] = "WM_PROTOCOLS",
|
||||
|
|
Loading…
Reference in New Issue