Commit 60d22760 authored by Joel Stanley's avatar Joel Stanley Committed by Rusty Russell

short_types: Fix warning in test

Our project builds the ccan tests with -Wextra, so we get warnings about
the unused variables.
Signed-off-by: default avatarJoel Stanley <joel@jms.id.au>
Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
parent 396f2fcd
......@@ -4,7 +4,7 @@
#include <stdlib.h>
#include <err.h>
int main(int argc, char *argv[])
int main(void)
{
plan_tests(6);
......
......@@ -3,7 +3,7 @@
#include <stdlib.h>
#include <err.h>
int main(int argc, char *argv[])
int main(void)
{
plan_tests(16);
......
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