diff options
-rw-r--r-- | src/map.c | 2 | ||||
-rw-r--r-- | src/ptr.c | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -179,7 +179,7 @@ int map_walk(char *word, int silent, int maponly) *buf = *word; if (!maponly) { if (*lookup_alias(buf)) - parse_instruction(buf, 1, 0, 0); // we want to execute aliases n,e,s,w,u,d + parse_instruction(buf, 1, 0, 0); /* we want to execute aliases n,e,s,w,u,d */ else tcp_write(tcp_fd, buf); } if (is_main || maponly) @@ -87,8 +87,8 @@ void _ptrdel(ptr p) { if (p && p->signature == PTR_SIG) free((void *)p); - //else - //fprintf( stderr, "Tried to free non ptr @%x\n", p ); + /* else */ + /* fprintf( stderr, "Tried to free non ptr @%x\n", p ); */ } /* clear a ptr */ |