From: Francois Fleuret Date: Tue, 13 Apr 2010 18:53:34 +0000 (+0200) Subject: Removed a debug line. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=commitdiff_plain;h=691256bbbd6bc8b8c0a10f01cc1f761e109df036 Removed a debug line. --- diff --git a/selector.c b/selector.c index 11265c6..b7a5e18 100644 --- a/selector.c +++ b/selector.c @@ -117,7 +117,6 @@ int string_to_positive_integer(char *string) { int result = 0; char *s; - printf("string_to_positive_integer string=\"%s\"\n", string); if(*string) { for(s = string; *s && *s != ','; s++) { if(*s >= '0' && *s <= '9') {