diff options
author | David Robillard <d@drobilla.net> | 2014-08-08 02:56:02 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-08 02:56:02 +0000 |
commit | 610e31874c9851a57701a5d513b83910cf0e8d68 (patch) | |
tree | 15413d10f8a0a22da3d5aa62306df99ef0473a75 /utils | |
parent | e6e16adb5473459ec2a0732cbf10bcb6fd7ffe2a (diff) | |
download | lilv-610e31874c9851a57701a5d513b83910cf0e8d68.tar.gz lilv-610e31874c9851a57701a5d513b83910cf0e8d68.tar.bz2 lilv-610e31874c9851a57701a5d513b83910cf0e8d68.zip |
Fix non-strict prototype.
git-svn-id: http://svn.drobilla.net/lad/trunk/lilv@5422 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'utils')
-rw-r--r-- | utils/bench.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/bench.h b/utils/bench.h index 948622c..1c11db4 100644 --- a/utils/bench.h +++ b/utils/bench.h @@ -1,5 +1,5 @@ /* - Copyright 2011-2012 David Robillard <http://drobilla.net> + Copyright 2011-2014 David Robillard <http://drobilla.net> Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above @@ -34,7 +34,7 @@ bench_elapsed_s(const struct timespec* start, const struct timespec* end) } static inline struct timespec -bench_start() +bench_start(void) { struct timespec start_t; clock_gettime(CLOCK_REALTIME, &start_t); |