summaryrefslogtreecommitdiff
path: root/examples/decode_with_drops.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-09 10:33:26 -0700
committerJames Zern <jzern@google.com>2015-05-11 20:54:55 -0700
commit59e7a47c418c77089afb6dfc28b8a178d8b9f1e3 (patch)
tree3438a23195b8959c48abfa33df4952bf8e662607 /examples/decode_with_drops.c
parent5f0dc57653eb60e950b3e71a1ed0d4b624ae4ef7 (diff)
downloadlibvpx-59e7a47c418c77089afb6dfc28b8a178d8b9f1e3.tar
libvpx-59e7a47c418c77089afb6dfc28b8a178d8b9f1e3.tar.gz
libvpx-59e7a47c418c77089afb6dfc28b8a178d8b9f1e3.tar.bz2
libvpx-59e7a47c418c77089afb6dfc28b8a178d8b9f1e3.zip
tools_common.h: fix usage_exit() prototype
+ the definitions in the examples silences a missing-prototype warning Change-Id: I7c064cacd6d2073a6107de6c3e2cc46ef8a68411
Diffstat (limited to 'examples/decode_with_drops.c')
-rw-r--r--examples/decode_with_drops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/decode_with_drops.c b/examples/decode_with_drops.c
index 36f7d80e1..2233e473d 100644
--- a/examples/decode_with_drops.c
+++ b/examples/decode_with_drops.c
@@ -65,7 +65,7 @@
static const char *exec_name;
-void usage_exit() {
+void usage_exit(void) {
fprintf(stderr, "Usage: %s <infile> <outfile> <N-M|N/M>\n", exec_name);
exit(EXIT_FAILURE);
}