hal/hald hald_dbus.c,1.59,1.60
Danny Kukawka
dkukawka at kemper.freedesktop.org
Fri May 12 07:34:30 PDT 2006
Update of /cvs/hal/hal/hald
In directory kemper:/tmp/cvs-serv6852/hald
Modified Files:
hald_dbus.c
Log Message:
2006-05-12 Danny Kukawka <danny.kukawka at web.de>
cleanup: s/;;/;/
* hald/hald_dbus.c: (hald_exec_method_enqueue),
(hald_exec_method_process_queue):
* tools/hal-device.c: (process_property):
* volume_id/reiserfs.c: (volume_id_probe_reiserfs):
Index: hald_dbus.c
===================================================================
RCS file: /cvs/hal/hal/hald/hald_dbus.c,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- hald_dbus.c 4 May 2006 19:40:16 -0000 1.59
+++ hald_dbus.c 12 May 2006 14:34:28 -0000 1.60
@@ -2608,11 +2608,11 @@
}
if (g_hash_table_lookup_extended (udi_to_method_queue, mi->udi, &origkey, (gpointer) &queue)) {
- HAL_INFO (("enqueue"));;
+ HAL_INFO (("enqueue"));
queue = g_list_append (queue, mi);
g_hash_table_replace (udi_to_method_queue, g_strdup (mi->udi), queue);
} else {
- HAL_INFO (("no need to enqueue"));;
+ HAL_INFO (("no need to enqueue"));
queue = g_list_append (NULL, mi);
g_hash_table_insert (udi_to_method_queue, g_strdup (mi->udi), queue);
@@ -2634,12 +2634,12 @@
}
if (queue == NULL) {
- HAL_INFO (("No more methods in queue"));;
+ HAL_INFO (("No more methods in queue"));
g_hash_table_remove (udi_to_method_queue, udi);
} else {
MethodInvocation *mi;
- HAL_INFO (("Execing next method in queue"));;
+ HAL_INFO (("Execing next method in queue"));
g_hash_table_replace (udi_to_method_queue, g_strdup (udi), queue);
mi = (MethodInvocation *) queue->data;
More information about the hal-commit
mailing list