From 184299e661052f99e246c90e4dc2debe9722d66b Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Mon, 24 Sep 2018 18:20:53 -0400 Subject: Fix signedness of printf format specifiers --- (limited to 'src/web-view-schemes') diff --git a/src/web-view-schemes/normal.c b/src/web-view-schemes/normal.c index 12b2582..f053cb2 100644 --- a/src/web-view-schemes/normal.c +++ b/src/web-view-schemes/normal.c @@ -270,7 +270,7 @@ menu_view_source_activate_cb(GtkAction G_GNUC_UNUSED *action, mq_notebook_insert_child( MQ_NOTEBOOK(gtk_widget_get_parent(GTK_WIDGET( mq_web_view_get_tab_page(web_view)))), - g_strdup_printf("view-source:origin-tab=%" PRId64 "&uri=%s", + g_strdup_printf("view-source:origin-tab=%" PRIu64 "&uri=%s", mq_tab_page_get_id(mq_web_view_get_tab_page(web_view)), mq_web_view_get_uri(web_view)), mq_web_view_get_tab_page(web_view), -- cgit v0.9.1