From bc83cb4fee46ae06749225e3b05df314a3e0a4a4 Mon Sep 17 00:00:00 2001 From: "powwow@askgustav.com" Date: Sat, 23 May 2020 11:28:50 +0200 Subject: stop using C99 comments diff --git a/src/map.c b/src/map.c index 7fd9b56..21671db 100644 --- a/src/map.c +++ b/src/map.c @@ -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) diff --git a/src/ptr.c b/src/ptr.c index 5878cd4..c3021b5 100644 --- a/src/ptr.c +++ b/src/ptr.c @@ -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 */ -- cgit v0.10.2