Rule of presidence == over =
Posted
by robUK
on Stack Overflow
See other posts from Stack Overflow
or by robUK
Published on 2010-04-29T02:54:06Z
Indexed on
2010/04/29
2:57 UTC
Read the original article
Hit count: 262
Filed under:
c
Hello,
I am just wondering would it be better to do this:
if((fd = (open(filename, O_RDWR)) == -1))
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
or this
fd = open(filename, O_RDWR);
if((fd == -1)
{
fprintf(stderr, "open [ %s ]\n", strerror(errno));
return 1;
}
Many thanks for any suggestions,
© Stack Overflow or respective owner