On Mon, 14 Dec 2015 12:49:04 -0500
Random832 wrote:
> I was going through sbase checking with -Wall -Wextra
> -pedantic -Werror, and among a bunch of noise errors
> relating to signed/unsigned comparisons, I found one with
> actual substance: the result of getline is being
> converted to size_t b
I was going through sbase checking with -Wall -Wextra -pedantic
-Werror, and among a bunch of noise errors relating to
signed/unsigned comparisons, I found one with actual substance:
the result of getline is being converted to size_t before
comparing to -1 to check for error.
diff --git a/join.c b