diff options
author | Julio Merino <jmmv@google.com> | 2016-01-27 15:47:54 -0500 |
---|---|---|
committer | Julio Merino <jmmv@meroh.net> | 2016-02-10 23:18:35 -0500 |
commit | 391f6767050cce2d34e7d556566c0abd02510854 (patch) | |
tree | 4f9109004efcf99cdd792e51eaf5d24ffb7d6a9b /cache.c | |
parent | c1e799b4da8418d907f45f5cf3928afe491040ac (diff) | |
download | sshfs-391f6767050cce2d34e7d556566c0abd02510854.tar sshfs-391f6767050cce2d34e7d556566c0abd02510854.tar.gz sshfs-391f6767050cce2d34e7d556566c0abd02510854.tar.bz2 sshfs-391f6767050cce2d34e7d556566c0abd02510854.zip |
Explicitly qualify unsigned as unsigned int
Diffstat (limited to 'cache.c')
-rw-r--r-- | cache.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -21,12 +21,12 @@ struct cache { int on; - unsigned stat_timeout_secs; - unsigned dir_timeout_secs; - unsigned link_timeout_secs; - unsigned max_size; - unsigned clean_interval_secs; - unsigned min_clean_interval_secs; + unsigned int stat_timeout_secs; + unsigned int dir_timeout_secs; + unsigned int link_timeout_secs; + unsigned int max_size; + unsigned int clean_interval_secs; + unsigned int min_clean_interval_secs; struct fuse_cache_operations *next_oper; GHashTable *table; pthread_mutex_t lock; |