diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-20 10:00:43 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2022-09-20 10:00:43 +0800 |
commit | 648d4ba2964a71e06f9675ee20d9e250d5fc88d1 (patch) | |
tree | b78e0c312d2deecb0ac116dfd910c7e8bc6d4143 | |
parent | c5b21d0fffb0b556222a6e41e6c7d11f04596859 (diff) |
Tidy up a bit
-rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,8 +6,8 @@ static void handle_success(emscripten_fetch_t *fetch) { char data[fetch->numBytes + 1]; strlcpy(data, fetch->data, fetch->numBytes + 1); - printf("Finished downloading %llu bytes of %s from URL %s.\n", fetch->numBytes, data, - fetch->url); + printf("Finished downloading %llu bytes of %s from URL %s.\n", + fetch->numBytes, data, fetch->url); emscripten_fetch_close(fetch); } |