]> git.ozlabs.org Git - ccan/blobdiff - ccan/tcon/test/compile_ok-container.c
Remove unused main() args in many modules.
[ccan] / ccan / tcon / test / compile_ok-container.c
index 9493c4dcc855ab9c375e445d1ea15605bf43407d..8afacabccc9594e8483cf9db4e4debe6f385fea8 100644 (file)
@@ -19,13 +19,13 @@ struct info_base {
 
 struct info_tcon {
        struct info_base base;
-       TCON(TCON_CONTAINER(concan, struct outer, inner));
+       TCON(TCON_CONTAINER(fi, struct outer, inner));
 };
 
-int main(int argc, char *argv[])
+int main(void)
 {
        /* Const should work! */
-       const struct outer *ovar;
+       const struct outer *ovar = NULL;
        struct outer *o;
        struct info_tcon info;