summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/main.c b/main.c
index f55221c..b5ea6f1 100644
--- a/main.c
+++ b/main.c
@@ -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);
}