From 7ff570b1a83f721daec94934937c31f6b520e69f Mon Sep 17 00:00:00 2001 From: night0721 <night@night0721.xyz> Date: Thu, 13 Feb 2025 10:48:51 +0000 Subject: [PATCH] Remove debug line --- neo.c | 1 - 1 file changed, 1 deletion(-) diff --git a/neo.c b/neo.c index 83408dc..0887899 100644 --- a/neo.c +++ b/neo.c @@ -147,7 +147,6 @@ int main(void) /* Read from stdin (pipe) */ char buf[MAX_LINE]; while (count < MAX_LINES && fgets(buf, sizeof(buf), stdin)) { - printf("buf: %s\n", buf); size_t len = strlen(buf); if (len && buf[len - 1] == '\n') buf[len - 1] = '\0'; lines[count++] = strdup(buf);