1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 16:26:29 +00:00

Merge pull request #2666 from enkore/f/fcs-gccwarn

cache sync: suppress GCC C90/C99 int literal warning
This commit is contained in:
enkore 2017-06-12 11:28:18 +02:00 committed by GitHub
commit fca40c62ed

View file

@ -26,7 +26,7 @@
#include "unpack_define.h" #include "unpack_define.h"
// 2**32 - 1025 // 2**32 - 1025
#define _MAX_VALUE ( (uint32_t) 4294966271 ) #define _MAX_VALUE ( (uint32_t) 4294966271UL )
#define MIN(x, y) ((x) < (y) ? (x): (y)) #define MIN(x, y) ((x) < (y) ? (x): (y))