summaryrefslogtreecommitdiff
path: root/frontends/monkey/fetch.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2017-06-09 22:04:58 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2017-06-10 12:54:57 +0100
commitfe9104096fd8de9f79338f750a13e0ddccf05429 (patch)
tree029e144c6035e7f8d6825a933691892c8f9b9726 /frontends/monkey/fetch.c
parent7272b59458c02286e1d246ffa09de7386f0d942e (diff)
downloadnetsurf-fe9104096fd8de9f79338f750a13e0ddccf05429.tar.gz
netsurf-fe9104096fd8de9f79338f750a13e0ddccf05429.tar.bz2
Reflow monkey code, it was annoying me too much
Diffstat (limited to 'frontends/monkey/fetch.c')
-rw-r--r--frontends/monkey/fetch.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/frontends/monkey/fetch.c b/frontends/monkey/fetch.c
index 4985329db..256d79b59 100644
--- a/frontends/monkey/fetch.c
+++ b/frontends/monkey/fetch.c
@@ -36,18 +36,18 @@ extern char **respaths;
static nsurl *gui_get_resource_url(const char *path)
{
- char buf[PATH_MAX];
- nsurl *url = NULL;
+ char buf[PATH_MAX];
+ nsurl *url = NULL;
- netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
+ netsurf_path_to_nsurl(filepath_sfind(respaths, buf, path), &url);
- return url;
+ return url;
}
static struct gui_fetch_table fetch_table = {
- .filetype = monkey_fetch_filetype,
+ .filetype = monkey_fetch_filetype,
- .get_resource_url = gui_get_resource_url,
+ .get_resource_url = gui_get_resource_url,
};
struct gui_fetch_table *monkey_fetch_table = &fetch_table;