From e184bd50fba860e00d1c90fa8ab9f4af46c20223 Mon Sep 17 00:00:00 2001 From: JustAnotherArchivist Date: Tue, 16 May 2023 02:27:36 +0000 Subject: [PATCH] Fix unused argc and argv error --- urldecode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/urldecode.c b/urldecode.c index 9aa0be9..7d96af3 100644 --- a/urldecode.c +++ b/urldecode.c @@ -27,7 +27,7 @@ #define BUFFER_SIZE 1024 * 300 -int main(int argc, char** argv) { +int main() { uint8_t* inbuf = malloc(sizeof(uint8_t) * BUFFER_SIZE); uint8_t* outbuf = malloc(sizeof(uint8_t) * BUFFER_SIZE + 2); size_t outp = 0;