ソースを参照

Fix unused argc and argv error

master
JustAnotherArchivist 11ヶ月前
コミット
e184bd50fb
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      urldecode.c

+ 1
- 1
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;


読み込み中…
キャンセル
保存