Package: cuetools Version: 1.3-1 >From the source:
char c;
while (-1 != (c = getopt_long(argc, argv, "hi:o:", longopts,
NULL))) {
A plain "char" type is not necessarily signed, and anyway can't contain
all the return values of getopt_long, i.e., can't contain all possible
char values *and* -1. Please change c to have type int instead.
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

