aboutsummaryrefslogtreecommitdiff
path: root/cache.c
diff options
context:
space:
mode:
authorJulio Merino <jmmv@google.com>2016-01-27 15:47:54 -0500
committerJulio Merino <jmmv@meroh.net>2016-02-10 23:18:35 -0500
commit391f6767050cce2d34e7d556566c0abd02510854 (patch)
tree4f9109004efcf99cdd792e51eaf5d24ffb7d6a9b /cache.c
parentc1e799b4da8418d907f45f5cf3928afe491040ac (diff)
downloadsshfs-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.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cache.c b/cache.c
index 96f7603..aeb14ec 100644
--- a/cache.c
+++ b/cache.c
@@ -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;