r316: get rid of a harmless gcc warning
This commit is contained in:
parent
eccdb3a1ca
commit
d4074874ee
8
getopt.c
8
getopt.c
|
|
@ -12,10 +12,10 @@ static void __getopt_msg(const char *a, const char *b, const char *c, size_t l)
|
|||
{
|
||||
FILE *f = stderr;
|
||||
flockfile(f);
|
||||
fputs(a, f)>=0
|
||||
&& fwrite(b, strlen(b), 1, f)
|
||||
&& fwrite(c, 1, l, f)==l
|
||||
&& putc('\n', f);
|
||||
fputs(a, f);
|
||||
fwrite(b, strlen(b), 1, f);
|
||||
fwrite(c, 1, l, f);
|
||||
fputc('\n', f);
|
||||
funlockfile(f);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue