dont typecast lvalue since gcc hates that

This commit is contained in:
Mike Frysinger 2005-10-05 00:50:03 +00:00
parent 9c44dce304
commit 23fedb3ad4

View File

@ -945,7 +945,7 @@ static void config (int sig __attribute__((unused)))
if (sep != 0) { if (sep != 0) {
int i; int i;
#define SWAP(type, a, b) {type c=(type)a; (type)a=(type)b; (type)b=(type)c;} #define SWAP(type, a, b) do {type c=(type)a; a=(type)b; b=(type)c;} while (0)
omask = sigblock (SIGBLOCK); omask = sigblock (SIGBLOCK);
/* /*