long int triagedOut = 0;
printf("%i", triagedOut);
main.c|89|warning: format '%i' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=]|
I actually get that message twice for the same line. ???
OK, so I will change it to the long int specifier "l" and, then...
printf("%l", triagedOut);
main.c|89|warning: conversion lacks type at end of format [-Wformat=]|
main.c|89|warning: too many arguments for format [-Wformat-extra-args]|
And I get these two messages twice, too.
I don't even know how there could be too many of anything. Just 1 of everything. What's it trying to tell me?