Commit d30f2a6e authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix variable type. off_t makes no sense for variable we keep in VM.

parent e45eb41e
...@@ -56,7 +56,7 @@ struct cached_file { ...@@ -56,7 +56,7 @@ struct cached_file {
char *file_name; char *file_name;
char *contents; char *contents;
time_t last_modification; time_t last_modification;
off_t file_sz; ssize_t file_sz;
VSLIST_ENTRY(cached_file) next; VSLIST_ENTRY(cached_file) next;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment