aboutsummaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'common.c')
-rw-r--r--common.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common.c b/common.c
index ecff03c..b7e661f 100644
--- a/common.c
+++ b/common.c
@@ -88,7 +88,6 @@ int get_int(const char* string)
char* first_num;
first_num = strpbrk(string, "0123456789");
- debug("first_num: '%s'\n",first_num);
return atoi(first_num);
}