[format.c] remove debug print

This commit is contained in:
opfez 2021-10-21 23:58:49 +02:00
parent 274264e4c4
commit 1c46143f24
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ void
rstrip(char *buf, char c)
{
size_t i = strlen(buf) - 1;
printf("i: %ld\n", i);
for(;;) {
if (buf[i] == c)