diff options
author | Okan Demirmen <okan@cvs.openbsd.org> | 2013-10-03 13:52:01 +0000 |
---|---|---|
committer | Okan Demirmen <okan@cvs.openbsd.org> | 2013-10-03 13:52:01 +0000 |
commit | 08611155998e49b9edb3e9049dc822f6e354ba07 (patch) | |
tree | 599e3b71cdffb6b1308d2274376e8596d2974cf7 /app/cwm/group.c | |
parent | b57ea7f6bd61d0a6ec6634fa565d15bd8c613bea (diff) |
unify type; no change
Diffstat (limited to 'app/cwm/group.c')
-rw-r--r-- | app/cwm/group.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/cwm/group.c b/app/cwm/group.c index fea05ff92..51e2a3400 100644 --- a/app/cwm/group.c +++ b/app/cwm/group.c @@ -16,7 +16,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: group.c,v 1.79 2013/07/15 14:50:44 okan Exp $ + * $OpenBSD: group.c,v 1.80 2013/10/03 13:51:59 okan Exp $ */ #include <sys/param.h> @@ -419,7 +419,7 @@ group_update_names(struct screen_ctx *sc) int i = 0, j = 0, nstrings = 0, n = 0, setnames = 0; if ((j = xu_getprop(sc->rootwin, ewmh[_NET_DESKTOP_NAMES], - cwmh[UTF8_STRING], 0xffffff, (u_char **)&prop_ret)) > 0) { + cwmh[UTF8_STRING], 0xffffff, (unsigned char **)&prop_ret)) > 0) { prop_ret[j - 1] = '\0'; /* paranoia */ while (i < j) { if (prop_ret[i++] == '\0') |