summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--libs/lmo/src/lmo_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/lmo/src/lmo_core.c b/libs/lmo/src/lmo_core.c
index cd117bec8..17467f21e 100644
--- a/libs/lmo/src/lmo_core.c
+++ b/libs/lmo/src/lmo_core.c
@@ -71,7 +71,7 @@ lmo_archive_t * lmo_open(const char *file)
goto cleanup;
}
- if( lseek(in, (off_t)(-sizeof(uint32_t)), SEEK_END) == -1 )
+ if( lseek(in, -sizeof(uint32_t), SEEK_END) == -1 )
{
error("Can not seek to eof", 1);
goto cleanup;