Ver a proveniência

Fix unused argc and argv error

master
JustAnotherArchivist há 11 meses
ascendente
cometimento
e184bd50fb
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      urldecode.c

+ 1
- 1
urldecode.c Ver ficheiro

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


Carregando…
Cancelar
Guardar