comparison libpurple/dbus-server.c @ 20974:365d000295d5

Etan pointed out that we should be using 64-bit variable types here. I'd added the variables but wasn't actually using them.
author Mark Doliner <mark@kingant.net>
date Tue, 16 Oct 2007 17:22:59 +0000
parents d59fb44a0617
children 9a1f88d6a875
comparison
equal deleted inserted replaced
20973:3e10bdc691d2 20974:365d000295d5
695 case PURPLE_TYPE_UINT: 695 case PURPLE_TYPE_UINT:
696 xuint = my_arg(guint); 696 xuint = my_arg(guint);
697 dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT32, &xuint); 697 dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT32, &xuint);
698 break; 698 break;
699 case PURPLE_TYPE_INT64: 699 case PURPLE_TYPE_INT64:
700 xint = my_arg(gint64); 700 xint64 = my_arg(gint64);
701 dbus_message_iter_append_basic(iter, DBUS_TYPE_INT64, &xint); 701 dbus_message_iter_append_basic(iter, DBUS_TYPE_INT64, &xint64);
702 break; 702 break;
703 case PURPLE_TYPE_UINT64: 703 case PURPLE_TYPE_UINT64:
704 xuint = my_arg(guint64); 704 xuint64 = my_arg(guint64);
705 dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT64, &xuint); 705 dbus_message_iter_append_basic(iter, DBUS_TYPE_UINT64, &xuint64);
706 break; 706 break;
707 case PURPLE_TYPE_BOOLEAN: 707 case PURPLE_TYPE_BOOLEAN:
708 xboolean = my_arg(gboolean); 708 xboolean = my_arg(gboolean);
709 dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &xboolean); 709 dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &xboolean);
710 break; 710 break;