summaryrefslogtreecommitdiff
path: root/content/fetchers
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2016-07-24 12:07:31 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2016-07-24 12:07:31 +0100
commitf9870c41f5404be33a15fe75f8a431053782597b (patch)
treebbcd21350c012247b2311154ca01b586a1e0d967 /content/fetchers
parent83f95fe05e98464ffa832df6f17ca619cc173bc2 (diff)
downloadnetsurf-f9870c41f5404be33a15fe75f8a431053782597b.tar.gz
netsurf-f9870c41f5404be33a15fe75f8a431053782597b.tar.bz2
Whitespace: Convert spaces to tab for indent.
Diffstat (limited to 'content/fetchers')
-rw-r--r--content/fetchers/data.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fetchers/data.c b/content/fetchers/data.c
index 84d0aa3fa..bbd4395d9 100644
--- a/content/fetchers/data.c
+++ b/content/fetchers/data.c
@@ -142,7 +142,7 @@ static bool fetch_data_process(struct fetch_data_context *c)
char *params;
char *comma;
char *unescaped;
- int unescaped_len;
+ int unescaped_len;
/* format of a data: URL is:
* data:[<mimetype>][;base64],<data>
@@ -197,8 +197,8 @@ static bool fetch_data_process(struct fetch_data_context *c)
/* URL unescape the data first, just incase some insane page
* decides to nest URL and base64 encoding. Like, say, Acid2.
*/
- unescaped = curl_easy_unescape(curl, comma + 1, 0, &unescaped_len);
- if (unescaped == NULL) {
+ unescaped = curl_easy_unescape(curl, comma + 1, 0, &unescaped_len);
+ if (unescaped == NULL) {
msg.type = FETCH_ERROR;
msg.data.error = "Unable to URL decode data: URL";
fetch_data_send_callback(&msg, c);