diff options
author | okan | 2014-01-24 15:08:06 +0000 |
---|---|---|
committer | okan | 2014-01-24 15:08:06 +0000 |
commit | cf1e87004c16c940a945e3d49b0552c80276ed10 (patch) | |
tree | ba4d049bf5c7dacaa8722f48a166630d62c8c458 /group.c | |
parent | c18fc20f4cc50da0602988a8332896f3b380641c (diff) | |
download | cwm-cf1e87004c16c940a945e3d49b0552c80276ed10.tar.gz |
correct arguments and drop the cast.
sanity check by oga@nicotinebsd
Diffstat (limited to '')
-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.83 2014/01/20 18:58:03 okan Exp $ + * $OpenBSD: group.c,v 1.84 2014/01/24 15:08:06 okan Exp $ */ #include <sys/param.h> @@ -105,7 +105,7 @@ group_show(struct screen_ctx *sc, struct group_ctx *gc) if (cc->stackingorder > gc->highstack) gc->highstack = cc->stackingorder; } - winlist = (Window *) xcalloc(sizeof(*winlist), (gc->highstack + 1)); + winlist = xcalloc((gc->highstack + 1), sizeof(*winlist)); /* * Invert the stacking order as XRestackWindows() expects them |