diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 21:50:55 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2005-05-07 21:50:55 +0000 |
| commit | 287c742cffadbb72f1e8cb9771539fb1602bd44a (patch) | |
| tree | 397a7486609ab9e7c4d0ffa5d6dd62aa90c2842b | |
| parent | a552ec298e3ecb0a0167bf140e81481e80b893f7 (diff) | |
| download | rockbox-287c742cffadbb72f1e8cb9771539fb1602bd44a.zip rockbox-287c742cffadbb72f1e8cb9771539fb1602bd44a.tar.gz rockbox-287c742cffadbb72f1e8cb9771539fb1602bd44a.tar.bz2 rockbox-287c742cffadbb72f1e8cb9771539fb1602bd44a.tar.xz | |
prevent compiler warning
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6415 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/dict.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/dict.c b/apps/plugins/dict.c index 5aaa86a..95d49b0 100644 --- a/apps/plugins/dict.c +++ b/apps/plugins/dict.c @@ -202,7 +202,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) } /* seek to the right offset */ - rb->lseek(fData, readlong(&word.offset), SEEK_SET); + rb->lseek(fData, (off_t)readlong(&word.offset), SEEK_SET); /* Read in the description */ rb->read_line(fData, description, display_columns * display_lines); |