diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-24 16:30:49 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-24 16:30:49 +0100 |
commit | eb61e2b3947beb939bb0e3aa88bb7dcef8390967 (patch) | |
tree | 1c36b1d06620e2e93078ccdae97efe1244797fc6 /src/export | |
parent | d10ac6c1e0a6d7806e3c91f75e1df73aaffe571c (diff) |
Unused variable
Diffstat (limited to 'src/export')
-rw-r--r-- | src/export/mystdlib.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/export/mystdlib.c b/src/export/mystdlib.c index 17f123b..ffc0cd9 100644 --- a/src/export/mystdlib.c +++ b/src/export/mystdlib.c | |||
@@ -49,7 +49,6 @@ void unmap_file ( MAP *pMap ) | |||
49 | int getfilesize( int fd, unsigned long *size) | 49 | int getfilesize( int fd, unsigned long *size) |
50 | { | 50 | { |
51 | struct stat sb; | 51 | struct stat sb; |
52 | int ret; | ||
53 | if( fstat( fd, &sb )) return -1; | 52 | if( fstat( fd, &sb )) return -1; |
54 | *size = sb.st_size; | 53 | *size = sb.st_size; |
55 | return 0; | 54 | return 0; |