|
|
|
|
|
by GuB-42
2144 days ago
|
|
It would break these kinds of constructs, which are common. if ((fd = open(...)) != -1) {
/* do something with fd */
} else {
perror("open");
}
The compiler outputs a warning when you have something like "if (a = b)". If that's what you mean (it sometimes is), you have to write it "if ((a = b))" to silence the warning. |
|