home · contact · privacy
Minor code beautifications.
[plomrogue] / src / server / things.c
index 6df9b18efe5fe32ab5bd441ac6e2232032540fcf..09000ed34e2073128a1442befe942c1d23ceb40c 100644 (file)
@@ -112,7 +112,7 @@ extern struct Thing * add_thing(int16_t id, uint8_t type, uint8_t y, uint8_t x)
 {
     struct Thing * t;
     t = (struct Thing *) add_to_struct_list(sizeof(struct Thing), 0, id, 0,
-                                            (struct NextAndId **) &world.things);
+                                            (struct NextAndId **)&world.things);
     struct ThingType * tt = get_thing_type(type);
     set_cleanup_flag(CLEANUP_THINGS);
     t->type       = tt->id;