summaryrefslogtreecommitdiff
path: root/com32/lib/sys/ftell.c
diff options
context:
space:
mode:
Diffstat (limited to 'com32/lib/sys/ftell.c')
-rw-r--r--com32/lib/sys/ftell.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/com32/lib/sys/ftell.c b/com32/lib/sys/ftell.c
index 3db2814f..3f109163 100644
--- a/com32/lib/sys/ftell.c
+++ b/com32/lib/sys/ftell.c
@@ -11,8 +11,6 @@ long ftell(FILE *stream)
{
int fd = fileno(stream);
struct file_info *fp = &__file_info[fd];
-
+
return fp->i.offset;
}
-
-