diff options
author | Christophe Grenier <[email protected]> | 2014-11-15 12:29:48 +0100 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2014-11-15 12:29:48 +0100 |
commit | 5ed8822f2b3cc95bf7f9bda45bf7b57e8a693f6d (patch) | |
tree | 69fd55db22dbc9b3d4d7ebc6aba46203a9c82b0e /src/filegen.h | |
parent | 17040353bc6dc9d3ac701037fe90ce69382fb49f (diff) |
Turn off various signed/unsigned comparaison warnings
Diffstat (limited to 'src/filegen.h')
-rw-r--r-- | src/filegen.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filegen.h b/src/filegen.h index 2f243da3..c601400e 100644 --- a/src/filegen.h +++ b/src/filegen.h @@ -95,7 +95,7 @@ struct file_hint_struct /* needed by tar header */ const uint64_t max_filesize; const int recover; - const int enable_by_default; + const unsigned int enable_by_default; void (*register_header_check)(file_stat_t *file_stat); }; |