commit | 43ed822a50db6b980041ddf91c16c7f8fccc4092 | [log] [tgz] |
---|---|---|
author | Brian Paul <brianp@vmware.com> | Thu Aug 30 16:12:53 2012 -0600 |
committer | Brian Paul <brianp@vmware.com> | Fri Aug 31 08:05:38 2012 -0600 |
tree | ce97cf56998dbeaacb374f248d09b2cf9cd32d2a | |
parent | c5f9cf8232952388db23ece3c712e6111328a69e [diff] |
st/mesa: s/CALLOC/calloc/ to fix allocation bug The CALLOC() macro only takes one argument so this was being treated as a comma expression. Simply use calloc() instead. A follow-on patch will replace all CALLOC() calls with calloc(). NOTE: This is a candidate for the 8.0 and 9.0 branches.