diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-13 00:45:34 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-13 00:45:34 -0400 |
| commit | 8b6508a6fbcfea9f741508dced34a702eaa08d01 (patch) | |
| tree | de2ef46512ad89e9c949f40c5c9049355f9290b6 | |
| parent | 5995af00e6fa544da67b2f3c4e49adaf40bd84c2 (diff) | |
Fixed some build warnings.
| -rw-r--r-- | new/tab_windows.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |
