Commit 19065e75 authored by Ulrich Sibiller's avatar Ulrich Sibiller

xkb: add missing const

this was missing from the backport of 5623c27700b7b23a8dbbd8c8f45e5d4fa0c667e3 (Constify atom name strings)
parent 9e29588d
...@@ -265,7 +265,8 @@ XkbWriteXKBKeymapForNames( FILE * file, ...@@ -265,7 +265,8 @@ XkbWriteXKBKeymapForNames( FILE * file,
unsigned want, unsigned want,
unsigned need) unsigned need)
{ {
char * name,*tmp; char * name;
const char * tmp;
unsigned complete; unsigned complete;
XkbNamesPtr old_names; XkbNamesPtr old_names;
int multi_section; int multi_section;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment