Browse Source

Fix unused argc and argv error

master
JustAnotherArchivist 10 months ago
parent
commit
e184bd50fb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      urldecode.c

+ 1
- 1
urldecode.c View File

@@ -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;


Loading…
Cancel
Save