summaryrefslogtreecommitdiff
path: root/tools_common.c
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2015-05-09 10:40:51 -0700
committerJames Zern <jzern@google.com>2015-05-11 20:55:01 -0700
commit5a73bbdb83f5f416ab6f6a33c3d61e07ca01fb85 (patch)
tree27fc5fb53665e76ce20836414a46dde51fdcc73b /tools_common.c
parent59e7a47c418c77089afb6dfc28b8a178d8b9f1e3 (diff)
downloadlibvpx-5a73bbdb83f5f416ab6f6a33c3d61e07ca01fb85.tar
libvpx-5a73bbdb83f5f416ab6f6a33c3d61e07ca01fb85.tar.gz
libvpx-5a73bbdb83f5f416ab6f6a33c3d61e07ca01fb85.tar.bz2
libvpx-5a73bbdb83f5f416ab6f6a33c3d61e07ca01fb85.zip
tools_common.h: fix get_vpx_encoder_count() proto
silences a missing-prototype warning Change-Id: Icf5c7f1f3e8ae9792276068fb3c0fd04b40fc7ad
Diffstat (limited to 'tools_common.c')
-rw-r--r--tools_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools_common.c b/tools_common.c
index e243a9157..7e2221712 100644
--- a/tools_common.c
+++ b/tools_common.c
@@ -140,7 +140,7 @@ static const VpxInterface vpx_encoders[] = {
#endif
};
-int get_vpx_encoder_count() {
+int get_vpx_encoder_count(void) {
return sizeof(vpx_encoders) / sizeof(vpx_encoders[0]);
}