diff options
author | okan | 2013-10-03 13:51:57 +0000 |
---|---|---|
committer | okan | 2013-10-03 13:51:57 +0000 |
commit | 86ed781908e60dff45fd3c2eafac2c88e343dcaf (patch) | |
tree | 4ba8ae6d209ff01d65537ab4d9c53b10c49428fa /group.c | |
parent | b5137cfeb0e04ba77f09e131d6a390ec2434a988 (diff) | |
download | cwm-86ed781908e60dff45fd3c2eafac2c88e343dcaf.tar.gz |
unify type; no change
Diffstat (limited to 'group.c')
-rw-r--r-- | group.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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') |