mirror of
https://gitlab.gnome.org/GNOME/gimp.git
synced 2025-07-05 10:19:37 +00:00
app: Fix format specifier
This commit is contained in:
parent
499b87d14d
commit
8adb3090c8
1 changed files with 2 additions and 2 deletions
|
@ -1427,7 +1427,7 @@ gimp_dnd_get_stream_data (GtkWidget *widget,
|
||||||
stream = (* (GimpDndDragStreamFunc) get_stream_func) (widget, &stream_length,
|
stream = (* (GimpDndDragStreamFunc) get_stream_func) (widget, &stream_length,
|
||||||
get_stream_data);
|
get_stream_data);
|
||||||
|
|
||||||
GIMP_LOG (DND, "stream %p, length %d", stream, stream_length);
|
GIMP_LOG (DND, "stream %p, length %" G_GSIZE_FORMAT, stream, stream_length);
|
||||||
|
|
||||||
if (stream)
|
if (stream)
|
||||||
{
|
{
|
||||||
|
@ -1449,7 +1449,7 @@ gimp_dnd_set_stream_data (GtkWidget *widget,
|
||||||
|
|
||||||
stream = gimp_selection_data_get_stream (selection, &stream_length);
|
stream = gimp_selection_data_get_stream (selection, &stream_length);
|
||||||
|
|
||||||
GIMP_LOG (DND, "stream %p, length %d", stream, stream_length);
|
GIMP_LOG (DND, "stream %p, length %" G_GSIZE_FORMAT, stream, stream_length);
|
||||||
|
|
||||||
if (! stream)
|
if (! stream)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue