diff options
author | portix <none@none> | 2013-02-18 22:23:56 +0100 |
---|---|---|
committer | portix <none@none> | 2013-02-18 22:23:56 +0100 |
commit | f5d7bcfdada973cc6875ff3cfd52147aba4f5b48 (patch) | |
tree | 5af9f14414e595464c585d4331044bd8f6fca159 /src/soup.c | |
parent | efbfa138fded83487e15ce596693a20d3c2c7608 (diff) | |
download | dwb-f5d7bcfdada973cc6875ff3cfd52147aba4f5b48.zip |
Fixing some of the clang warnings
Diffstat (limited to 'src/soup.c')
-rw-r--r-- | src/soup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -236,7 +236,7 @@ dwb_soup_test_cookie_allowed(GList *list, SoupCookie *cookie) DwbStatus dwb_soup_set_cookie_accept_policy(const char *policy) { - SoupCookieJarAcceptPolicy apo = 37; + int apo = 37; DwbStatus ret = STATUS_OK; if (policy == NULL || ! g_ascii_strcasecmp(policy, "always")) apo = SOUP_COOKIE_JAR_ACCEPT_ALWAYS; |