From 12400496cc4a15fe1e7afbe0795f9ab3f4207790 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 30 Jul 2009 12:11:08 +0000 Subject: [PATCH] libs/lmo: remove cast in first lseek(), not needed since it's a constant expression --- libs/lmo/src/lmo_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.11.0