Fix randomly reverted files.

This commit is contained in:
Kris Maglione 2010-06-02 01:30:44 -04:00
parent 5a078dfe24
commit fb1d7443a1
2 changed files with 3 additions and 3 deletions

View File

@ -4,6 +4,6 @@
#include "../x11.h"
void
changeprop_char(Window *w, const char *prop, const char *type, char data[], int len) {
changeproperty(w, prop, type, 8, (uchar*)data, len);
changeprop_char(Window *w, const char *prop, const char *type, const char data[], int len) {
changeproperty(w, prop, type, 8, (const uchar*)data, len);
}

View File

@ -4,7 +4,7 @@
#include "../x11.h"
int
getprop_textlist(Window *w, char *name, char **ret[]) {
getprop_textlist(Window *w, const char *name, char **ret[]) {
XTextProperty prop;
char **list;
int n;