summaryrefslogtreecommitdiffstats
path: root/src/view-source.c
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-10-31 02:40:56 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-10-31 02:41:29 (EDT)
commit86e0b0d194a2b41255d11c1197d68d3e6b2fa999 (patch)
tree10746639fa5937396c2d6e60e96161b2fa6965b6 /src/view-source.c
parent867b726401167a19a591bbd577982b060b2a583f (diff)
downloadmarquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.zip
marquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.tar.gz
marquee-86e0b0d194a2b41255d11c1197d68d3e6b2fa999.tar.bz2
atoi64(), parse_query_string(): Prefix function names with "mq_"
And update calls.
Diffstat (limited to 'src/view-source.c')
-rw-r--r--src/view-source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view-source.c b/src/view-source.c
index 57b710d..271ad5a 100644
--- a/src/view-source.c
+++ b/src/view-source.c
@@ -97,10 +97,10 @@ mq_view_source_request(WebKitURISchemeRequest *request,
DataSignalData *data_signal_data;
path = g_strdup(webkit_uri_scheme_request_get_path(request));
- query = parse_query_string(path);
+ query = mq_parse_query_string(path);
/* TODO: Handle missing tab ID ("origin-tab=0"). */
- origin_tab_id = atoi64(g_hash_table_lookup(query, "origin-tab"));
+ origin_tab_id = mq_atoi64(g_hash_table_lookup(query, "origin-tab"));
uri = g_strdup(g_hash_table_lookup(query, "uri"));
g_hash_table_unref(query);