Skip to content

Commit

Permalink
Explicitly qualify unsigned as unsigned int
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmv committed Feb 11, 2016
1 parent c1e799b commit 391f676
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 391f676

Please sign in to comment.