Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[tcf-dev] [PATCH 2/2] compression.c: Fix gcc not a prototype warning

---
 agent/tcf/framework/compression.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/agent/tcf/framework/compression.c b/agent/tcf/framework/compression.c
index 34fa193..73c4c66 100644
--- a/agent/tcf/framework/compression.c
+++ b/agent/tcf/framework/compression.c
@@ -231,7 +231,7 @@ static void decode_tables(unsigned type) {
     }
 }
 
-static void decode_data_block() {
+static void decode_data_block(void) {
     static const unsigned length_base[31] = {
           3,   4,   5,   6,   7,   8,   9,  10,
          11,  13,  15,  17,  19,  23,  27,  31,
-- 
1.8.3.1



Back to the top