aboutsummaryrefslogtreecommitdiffstats
path: root/lcd4linux.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lcd4linux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lcd4linux.c b/lcd4linux.c
index 33a41e7..eee332b 100644
--- a/lcd4linux.c
+++ b/lcd4linux.c
@@ -82,7 +82,7 @@ static void interactive_mode(void)
RESULT result = { 0, 0, 0, NULL };
printf("\neval> ");
- for (fgets(line, 1024, stdin); !feof(stdin); fgets(line, 1024, stdin)) {
+ for (fgets(line, sizeof(line), stdin); !feof(stdin); fgets(line, sizeof(line), stdin)) {
if (line[strlen(line) - 1] == '\n')
line[strlen(line) - 1] = '\0';
if (strlen(line) > 0) {