Formatting fixes.

This commit is contained in:
Pietro Gagliardi 2016-06-21 12:45:04 -04:00
parent 1f20772b46
commit d93bb2c48f
2 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ int main(int argc, char *argv[])
w = newWindow("Main Window", 320, 240, 1);
uiWindowOnClosing(w, onClosing, NULL);
printf("main window %p\n", (void*)w);
printf("main window %p\n", (void *) w);
uiOnShouldQuit(onShouldQuit, w);

View File

@ -47,7 +47,7 @@ static void forceOff(uiMenuItem *item, uiWindow *w, void *data)
static void whatWindow(uiMenuItem *item, uiWindow *w, void *data)
{
printf("menu item clicked on window %p\n", (void*)w);
printf("menu item clicked on window %p\n", (void *) w);
}
void initMenus(void)