X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=blobdiff_plain;f=selector.c;h=b7a5e1841afc99fe0bcdb58cf016f44ca8a32939;hp=11265c673b3efc3713383839ee87fe454a66fb0c;hb=691256bbbd6bc8b8c0a10f01cc1f761e109df036;hpb=007ead4b6f3d770c9adf6502abac7eb825e16d83 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') {