diff options
author | Marco Peereboom <marco@conformal.com> | 2012-02-17 09:19:03 -0600 |
---|---|---|
committer | Marco Peereboom <marco@conformal.com> | 2012-02-17 09:19:03 -0600 |
commit | 0e246426103279289b8bdf71f8c1c4f3c7b714a0 (patch) | |
tree | 8452f265f03568e081648e3dfd4cdc21da9f7f31 | |
parent | dce7d4a4c4f8ad27c5ff7c1fd08931208dbfec1d (diff) | |
download | xombrero-0e246426103279289b8bdf71f8c1c4f3c7b714a0.tar.gz |
on linux unsigned long long isnt unsigned long long
-rw-r--r-- | about.c | 2 | ||||
-rw-r--r-- | xxxterm.c | 2 | ||||
-rw-r--r-- | xxxterm.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/about.c b/about.c index ba05078..10c4584 100644 --- a/about.c +++ b/about.c @@ -275,7 +275,7 @@ int stats(struct tab *t, struct karg *args) { char *page, *body, *s, line[64 * 1024]; - long long unsigned int line_count = 0; + uint64_t line_count = 0; FILE *r_cookie_f; if (t == NULL) diff --git a/xxxterm.c b/xxxterm.c index b845a7e..6b40fe7 100644 --- a/xxxterm.c +++ b/xxxterm.c @@ -251,7 +251,7 @@ int undo_count; int cmd_history_count = 0; int search_history_count = 0; char *global_search; -long long unsigned int blocked_cookies = 0; +uint64_t blocked_cookies = 0; char named_session[PATH_MAX]; GtkListStore *completion_model; GtkListStore *buffers_store; diff --git a/xxxterm.h b/xxxterm.h index 89a58cf..4478c0c 100644 --- a/xxxterm.h +++ b/xxxterm.h @@ -649,7 +649,7 @@ extern SoupCookieJar *p_cookiejar; extern SoupSession *session; extern GtkNotebook *notebook; extern GtkListStore *completion_model; -extern long long unsigned int blocked_cookies; +extern uint64_t blocked_cookies; extern void (*_soup_cookie_jar_add_cookie)(SoupCookieJar *, SoupCookie *); |