]> git.ozlabs.org Git - ccan/blobdiff - ccan/container_of/test/compile_fail-bad-type.c
Remove unused main() args in many modules.
[ccan] / ccan / container_of / test / compile_fail-bad-type.c
index b7a1459386b2d53c8f650388073f7e40f1934897..55a911a1b006c770ab703483e6b53775a851a4cb 100644 (file)
@@ -6,7 +6,7 @@ struct foo {
        char b;
 };
 
-int main(int argc, char *argv[])
+int main(void)
 {
        struct foo foo = { .a = 1, .b = 2 };
        int *intp = &foo.a;