Removed a debug line.
[selector.git] / selector.c
index 11265c6..b7a5e18 100644 (file)
@@ -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') {