From 96da27494f89d75f8aec0c8894440c3f7482f54b Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 26 Jan 2017 17:43:38 +0100 Subject: More lua --- src/lib/libc/stdio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/libc/stdio.c') diff --git a/src/lib/libc/stdio.c b/src/lib/libc/stdio.c index d90c30b..dcbcf83 100644 --- a/src/lib/libc/stdio.c +++ b/src/lib/libc/stdio.c @@ -238,7 +238,7 @@ int fgetc(FILE *stream) { } } char *fgets(char *s, int size, FILE *stream) { - dbg_printf("FGETS %p\n", stream); + dbg_printf("FGETS %p %d\n", stream, size); int l = 0; while (l < size - 1) { -- cgit v1.2.3