mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-12 07:26:15 +01:00
win32: silence build warning
glocalfile.c: In function 'g_local_file_measure_size_of_file': glocalfile.c:2654:3: warning: passing argument 2 of 'g_lstat' from incompatible pointer type [enabled by default] if (g_lstat (name->data, &buf) != 0) ^ In file included from glocalfile.c:68:0: ../glib/gstdio.h:135:5: note: expected 'struct GStatBuf *' but argument is of type 'struct _stati64 *' https://bugzilla.gnome.org/show_bug.cgi?id=711547
This commit is contained in:
parent
a8f58fcfec
commit
38a6ab3e0e
@ -2643,7 +2643,7 @@ g_local_file_measure_size_of_file (gint parent_fd,
|
||||
MeasureState *state,
|
||||
GError **error)
|
||||
{
|
||||
struct stat buf;
|
||||
GLocalFileStat buf;
|
||||
|
||||
if (g_cancellable_set_error_if_cancelled (state->cancellable, error))
|
||||
return FALSE;
|
||||
|
Loading…
Reference in New Issue
Block a user