summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/fscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lua/fscanf.c')
-rw-r--r--apps/plugins/lua/fscanf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/lua/fscanf.c b/apps/plugins/lua/fscanf.c
index ee42daeab7..9f5f129d3c 100644
--- a/apps/plugins/lua/fscanf.c
+++ b/apps/plugins/lua/fscanf.c
@@ -266,7 +266,7 @@ static int scan(int (*peek)(void *userp),
266 266
267static int fspeek(void *userp) 267static int fspeek(void *userp)
268{ 268{
269 int fd = ((int) userp); 269 int fd = *((int*) userp);
270 char buf = 0; 270 char buf = 0;
271 if(rb->read(fd, &buf, 1) == 1) 271 if(rb->read(fd, &buf, 1) == 1)
272 rb->lseek(fd, -1, SEEK_CUR); 272 rb->lseek(fd, -1, SEEK_CUR);
@@ -275,11 +275,11 @@ static int fspeek(void *userp)
275 275
276static void fspop(void *userp) 276static void fspop(void *userp)
277{ 277{
278 int fd = ((int) userp); 278 int fd = *((int*) userp);
279 rb->lseek(fd, 1, SEEK_CUR); 279 rb->lseek(fd, 1, SEEK_CUR);
280} 280}
281 281
282int PREFIX(fscanf)(void *fd, const char *fmt, ...) 282int PREFIX(fscanf)(int fd, const char *fmt, ...)
283{ 283{
284 int r; 284 int r;
285 va_list ap; 285 va_list ap;