From 8b6508a6fbcfea9f741508dced34a702eaa08d01 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Mon, 13 Apr 2015 00:45:34 -0400 Subject: [PATCH] Fixed some build warnings. --- new/tab_windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/new/tab_windows.c b/new/tab_windows.c index 3966cac..5cde3f0 100644 --- a/new/tab_windows.c +++ b/new/tab_windows.c @@ -149,7 +149,7 @@ void uiTabAddPage(uiControl *c, const char *name, uiControl *child) if (t->len >= t->cap) { t->cap += tabCapGrow; - t->pages = (struct tabPage *) uiRealloc(t->pages, t->cap * sizeof (uiParent *), "uiParent *[]"); + t->pages = (uiParent **) uiRealloc(t->pages, t->cap * sizeof (uiParent *), "uiParent *[]"); } hwnd = uiControlHWND(c);