aboutsummaryrefslogtreecommitdiffstats
path: root/src/ptr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ptr.c')
-rw-r--r--src/ptr.c4
1 files changed, 2 insertions, 2 deletions
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 */