diff options
author | Alex Auvolat <alex@adnab.me> | 2017-01-26 17:43:38 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2017-01-26 17:43:38 +0100 |
commit | 96da27494f89d75f8aec0c8894440c3f7482f54b (patch) | |
tree | a239f75acf6c2c11cfa54b895653f978980064cb /src/lib/libc/stdio.c | |
parent | 809d660944cfb515e18bb7f1c1519392b4bccd53 (diff) | |
download | kogata-96da27494f89d75f8aec0c8894440c3f7482f54b.tar.gz kogata-96da27494f89d75f8aec0c8894440c3f7482f54b.zip |
More lua
Diffstat (limited to 'src/lib/libc/stdio.c')
-rw-r--r-- | src/lib/libc/stdio.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) { |