From: Rich Felker Date: Fri, 2 Nov 2018 16:04:41 +0000 (-0400) Subject: remove commented-out debug printf from strstr X-Git-Tag: v1.1.21~30 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0239cd0681e889a269fb7691f60e81ef8d081e6b;p=oweals%2Fmusl.git remove commented-out debug printf from strstr this was leftover from before the initial commit. --- diff --git a/src/string/strstr.c b/src/string/strstr.c index c80e9caf..c7d66682 100644 --- a/src/string/strstr.c +++ b/src/string/strstr.c @@ -108,7 +108,6 @@ static char *twoway_strstr(const unsigned char *h, const unsigned char *n) /* Check last byte first; advance by shift on mismatch */ if (BITOP(byteset, h[l-1], &)) { k = l-shift[h[l-1]]; - //printf("adv by %zu (on %c) at [%s] (%zu;l=%zu)\n", k, h[l-1], h, shift[h[l-1]], l); if (k) { if (mem && k < p) k = l-p; h += k;