[lib][gfxconsole] fix warning introduced in print callback registering

This commit is contained in:
Travis Geiselbrecht
2016-02-21 14:15:04 -08:00
parent 21f87263b8
commit ff12cba747

View File

@@ -116,8 +116,9 @@ void gfxconsole_print_callback(print_callback_t *cb, const char *str, size_t len
}
static print_callback_t cb = {
{ 0 },
gfxconsole_print_callback
.entry = { 0 },
.print = gfxconsole_print_callback,
.context = NULL
};
/**