diff options
author | Christoph Lohmann <20h@r-36.net> | 2015-02-03 17:17:04 +0100 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2015-02-03 17:17:04 +0100 |
commit | b3a4392923b26e81c4faa35907a4a2d071e2275f (patch) | |
tree | f4917c02de1806f6084d770b5995f1e4b7080df9 | |
parent | b1c5e594d135292bb7b1da426ae5959bfe788b57 (diff) | |
download | surf-b3a4392923b26e81c4faa35907a4a2d071e2275f.tar.gz surf-b3a4392923b26e81c4faa35907a4a2d071e2275f.tar.bz2 surf-b3a4392923b26e81c4faa35907a4a2d071e2275f.zip |
Some cleanup in style.
-rw-r--r-- | surf.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -292,7 +292,7 @@ buttonrelease(WebKitWebView *web, GdkEventButton *e, GList *gl) { static void cleanup(void) { - if (diskcache) { + if(diskcache) { soup_cache_flush(diskcache); soup_cache_dump(diskcache); } @@ -715,7 +715,7 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) { case WEBKIT_LOAD_FINISHED: c->progress = 100; updatetitle(c); - if (diskcache) { + if(diskcache) { soup_cache_flush(diskcache); soup_cache_dump(diskcache); } |