Fix warnings trivial warnings.

Fix warnings about:
 . Unused variables
 . format mismatch in printf/scanf format string and arguments
 . Missing parenthesis around assignment as truth values
 . Clang warnings anout unknown GCC pragma
This commit is contained in:
2012-12-11 18:42:21 +01:00
parent 77399bd649
commit 0ac803292e
65 changed files with 297 additions and 284 deletions

View File

@@ -103,7 +103,7 @@ char *argv[];
if (lenofname > FILE_NAME) ofname[FILE_NAME] = '\0';
strcat(ofname, ".uue");
lenofname = strlen(ofname);
if (!split && (filter || (argc > 2) && (argv[2][0] == '-'))) {
if (!split && (filter || ((argc > 2) && (argv[2][0] == '-')))) {
stdo = 1;
outp = stdout;
} else {