diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/Makefile.am | 1 | ||||
-rw-r--r-- | src/main.c | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 47d7f3b..cab2e16 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,4 +9,3 @@ INCLUDES = $(GLIB2_CFLAGS) $(GUILE_CFLAGS) -I$(top_builddir)/include \ grobots_SOURCES = main.c api.c sign.c map.c grobot.c userinterface.c grobots_LDFLAGS = $(GLIB2_LIBS) $(GUILE_LDFLAGS) -lltdl - @@ -54,7 +54,7 @@ /* Globals (share with api.c) */ GList *robots = NULL; -GRobot *robot = NULL; // The current robot +GRobot *robot = NULL; /* The current robot */ UserInterface *ui; Map *map; GModule *plugin; @@ -500,7 +500,7 @@ exit_nicely () "energy", &energy, "units", &units, "shots", &shots, "score", &score, NULL); - g_list_foreach (robots, g_object_unref, NULL); + g_list_foreach (robots, (GFunc)g_object_unref, NULL); g_list_free (robots); /* unload the plugin */ |