From: Christian Heller Date: Tue, 21 Jan 2014 04:31:55 +0000 (+0100) Subject: Minor comment-cosmetic corrections. X-Git-Tag: tce~892 X-Git-Url: https://plomlompom.com/repos/?a=commitdiff_plain;h=cda9c65e89a5dfb0c8306cd7ac74427df29c3c21;p=plomrogue Minor comment-cosmetic corrections. --- diff --git a/src/client/keybindings.c b/src/client/keybindings.c index afafb9c..73fc2c8 100644 --- a/src/client/keybindings.c +++ b/src/client/keybindings.c @@ -19,7 +19,7 @@ /* Return "n"-th keybinding in keybindings chain from "kb_p" on. */ static struct KeyBinding * get_keyb_of_n(struct KeyBinding * kb_p, uint16_t n); -//* Return number of keybindings in keybindings chain from "kb_p" on. */ +/* Return number of keybindings in keybindings chain from "kb_p" on. */ static uint16_t get_n_of_keybs(struct KeyBinding * kb_p); /* If "keycode_given" equals "keycode_match", copy "keyname_match" to "keyname" diff --git a/src/server/map_objects.c b/src/server/map_objects.c index 5b5bd97..b114750 100644 --- a/src/server/map_objects.c +++ b/src/server/map_objects.c @@ -48,7 +48,7 @@ static struct MapObj * get_map_object(struct MapObj * ptr, uint8_t id) -static struct yx_uint16 find_passable_pos() // struct Map * map) +static struct yx_uint16 find_passable_pos() { struct yx_uint16 pos; for (pos.y = pos.x = 0; 0 == is_passable(pos);)