cleanup: explicitly mark unused parameters (-Wunused-parameter)
[urcu.git] / doc / examples / wfstack / cds_wfs_pop_all_blocking.c
index 766f07f1eb09226b1452dd9fc73d65f5f97a601a..794ced154008064c7eeb4285ff09225a16afcc06 100644 (file)
@@ -27,7 +27,7 @@ struct mynode {
        struct cds_wfs_node node;       /* Chaining in stack */
 };
 
-int main(int argc, char **argv)
+int main(void)
 {
        int values[] = { -5, 42, 36, 24, };
        struct cds_wfs_stack mystack;   /* Stack */
@@ -75,5 +75,6 @@ int main(int argc, char **argv)
        }
        printf("\n");
 end:
+       cds_wfs_destroy(&mystack);
        return ret;
 }
This page took 0.022654 seconds and 4 git commands to generate.