This is the warning:
In file included from print_test.c:47:
./../print.c:203:9: warning: Although the value stored to 'neg' is used in the enclosing expression, the value is never actually read from 'neg'
dot = neg = space = plus = left = zero = alt = h = l = q = z = 0;
^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 warning generated.
int left;
int plus;
int space;
- int neg;
int64_t tmpi;
uint64_t tmpui;
unsigned long width;
/*
* Reset flags.
*/
- dot = neg = space = plus = left = zero = alt = h = l = q = z = 0;
+ dot = space = plus = left = zero = alt = h = l = q = z = 0;
width = precision = 0;
head = "";
pad = zeropad = 0;