mount-op: use gint64 instead of guint64 for time_left and bytes_left

Since those can be -1, they need to be signed.

https://bugzilla.gnome.org/show_bug.cgi?id=682284
This commit is contained in:
Cosimo Cecchi
2012-08-20 19:46:33 +02:00
parent ac8c13d25c
commit 0d8a81b722
2 changed files with 7 additions and 6 deletions

View File

@@ -82,8 +82,8 @@ struct _GMountOperationClass
void (* show_unmount_progress) (GMountOperation *op,
const gchar *message,
guint64 time_left,
guint64 bytes_left);
gint64 time_left,
gint64 bytes_left);
/*< private >*/
/* Padding for future expansion */