buildfixes

This commit is contained in:
Brad Parker 2017-12-11 18:22:40 -05:00
parent 247b9ea973
commit c265c8328c
2 changed files with 2 additions and 1 deletions

View File

@ -15,6 +15,7 @@
* If not, see <http://www.gnu.org/licenses/>.
*/
#include <stddef.h>
#include "../video_display_server.h"
static void* null_display_server_init()

View File

@ -26,7 +26,7 @@ typedef struct
static void* win32_display_server_init()
{
dispserv_win32_t *dispserv = calloc(1, sizeof(*dispserv));
dispserv_win32_t *dispserv = (dispserv_win32_t*)calloc(1, sizeof(*dispserv));
return dispserv;
}