diff options
author | Tomas Bzatek <tbzatek@redhat.com> | 2012-07-24 17:17:11 +0200 |
---|---|---|
committer | Tomas Bzatek <tbzatek@redhat.com> | 2012-07-31 11:59:38 +0200 |
commit | 1d4481e504ea6251c2d2573efa2fb64104291aa6 (patch) | |
tree | ac2bd3843b491975d1dfc660e23608eeba2bbf27 /common | |
parent | fc26e52e4f7ddbd1a24ec9d02d76bd4c70d0b1f7 (diff) | |
download | gvfs-1d4481e504ea6251c2d2573efa2fb64104291aa6.tar.gz |
gdbus: Fix case of GDbusAttributeValue struct
Diffstat (limited to 'common')
-rw-r--r-- | common/gvfsdaemonprotocol.c | 8 | ||||
-rw-r--r-- | common/gvfsdaemonprotocol.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/common/gvfsdaemonprotocol.c b/common/gvfsdaemonprotocol.c index 6526de85..e40d3caf 100644 --- a/common/gvfsdaemonprotocol.c +++ b/common/gvfsdaemonprotocol.c @@ -63,7 +63,7 @@ append_object (GObject *obj) void _g_dbus_attribute_value_destroy (GFileAttributeType type, - GDbusAttributeValue *value) + GDBusAttributeValue *value) { switch (type) { case G_FILE_ATTRIBUTE_TYPE_STRING: @@ -84,7 +84,7 @@ _g_dbus_attribute_value_destroy (GFileAttributeType type, gpointer _g_dbus_attribute_as_pointer (GFileAttributeType type, - GDbusAttributeValue *value) + GDBusAttributeValue *value) { switch (type) { case G_FILE_ATTRIBUTE_TYPE_STRING: @@ -222,7 +222,7 @@ _g_dbus_get_file_attribute (GVariant *value, gchar **attribute, GFileAttributeStatus *status, GFileAttributeType *type, - GDbusAttributeValue *attr_value) + GDBusAttributeValue *attr_value) { gboolean res; char *str; @@ -335,7 +335,7 @@ _g_dbus_get_file_info (GVariant *value, gchar *attribute; GFileAttributeType type; GFileAttributeStatus status; - GDbusAttributeValue attr_value; + GDBusAttributeValue attr_value; GVariantIter iter; GVariant *child; diff --git a/common/gvfsdaemonprotocol.h b/common/gvfsdaemonprotocol.h index 7b25f14a..440620b4 100644 --- a/common/gvfsdaemonprotocol.h +++ b/common/gvfsdaemonprotocol.h @@ -74,12 +74,12 @@ typedef union { guint32 uint32; guint64 uint64; gpointer ptr; -} GDbusAttributeValue; +} GDBusAttributeValue; void _g_dbus_attribute_value_destroy (GFileAttributeType type, - GDbusAttributeValue *value); + GDBusAttributeValue *value); gpointer _g_dbus_attribute_as_pointer (GFileAttributeType type, - GDbusAttributeValue *value); + GDBusAttributeValue *value); GVariant * _g_dbus_append_file_attribute (const char *attribute, GFileAttributeStatus status, GFileAttributeType type, @@ -89,7 +89,7 @@ gboolean _g_dbus_get_file_attribute (GVariant *va gchar **attribute, GFileAttributeStatus *status, GFileAttributeType *type, - GDbusAttributeValue *attr_value); + GDBusAttributeValue *attr_value); GFileInfo *_g_dbus_get_file_info (GVariant *value, GError **error); |