summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorBradley Smith2008-03-07 18:46:31 +0000
committerBradley Smith2008-03-07 18:46:31 +0000
commit371d4c3202de9fa52ab0ffd0a5726a18e0479a12 (patch)
tree4c299cb10acaf0717215a94a169c987fad87b7c0 /src/main.c
parentAdjust bootstrap script to not autorun configure (diff)
downloadgnurobots-371d4c3202de9fa52ab0ffd0a5726a18e0479a12.tar.gz
Add -pedantic-errors and -Werror flags to compile, and fix code to comply.
Signed-off-by: Bradley Smith <brad@brad-smith.co.uk>
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 8c2d683..0359ba3 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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 */