aboutsummaryrefslogtreecommitdiff
path: root/common.c
diff options
context:
space:
mode:
authorDavid Phillips <dbphillipsnz@gmail.com>2015-09-01 17:31:09 +1200
committerDavid Phillips <dbphillipsnz@gmail.com>2015-09-01 17:31:09 +1200
commitb6338e7753d0862276d7ed38eab2a19d8b6544b6 (patch)
tree15ff198faf468bab10e351cd7c59d7bb3f06c8a4 /common.c
parent956a6261ebfdf8fb3346b8935d0ec59c1c26df7c (diff)
downloadparamano-b6338e7753d0862276d7ed38eab2a19d8b6544b6.tar.xz
Removed old debug swarf
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);
}