diff options
Diffstat (limited to 'tests/testtooltips.c')
-rw-r--r-- | tests/testtooltips.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testtooltips.c b/tests/testtooltips.c index 8def5111b7..f0a062e763 100644 --- a/tests/testtooltips.c +++ b/tests/testtooltips.c @@ -115,7 +115,7 @@ query_tooltip_tree_view_cb (GtkWidget *widget, gtk_tree_model_get (model, &iter, 0, &tmp, -1); pathstring = gtk_tree_path_to_string (path); - snprintf (buffer, 511, "<b>Path %s:</b> %s", pathstring, tmp); + g_snprintf (buffer, 511, "<b>Path %s:</b> %s", pathstring, tmp); gtk_tooltip_set_markup (tooltip, buffer); gtk_tree_path_free (path); |