Commit 1cf2c958 authored by vasil's avatar vasil

branches/zip:

Silence warning about unused variables.
parent 177ccaca
......@@ -7,6 +7,10 @@ main(int argc, char** argv)
pthread_t x2;
pthread_t x3;
memset(&x1, 0x0, sizeof(x1));
memset(&x2, 0x0, sizeof(x2));
memset(&x3, 0x0, sizeof(x3));
__sync_bool_compare_and_swap(&x1, x2, x3);
return(0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment