changeset 1526:98a9c54459f0 trunk

[svn] - a minor tweak to the save function
author nenolod
date Mon, 07 Aug 2006 23:08:59 -0700
parents a830b959c061
children e05ee730df6b
files ChangeLog Plugins/Visualization/paranormal/pn/pnvis.c
diffstat 2 files changed, 10 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Aug 07 22:58:22 2006 -0700
+++ b/ChangeLog	Mon Aug 07 23:08:59 2006 -0700
@@ -1,3 +1,12 @@
+2006-08-08 05:58:22 +0000  William Pitcock <nenolod@nenolod.net>
+  revision [1964]
+  - locking the mutex on audacious data upload is unnecessary.
+  
+
+  Changes:        Modified:
+  +0 -12          trunk/Plugins/Visualization/paranormal/client.c  
+
+
 2006-08-08 04:56:22 +0000  William Pitcock <nenolod@nenolod.net>
   revision [1962]
   - some cleanups
--- a/Plugins/Visualization/paranormal/pn/pnvis.c	Mon Aug 07 22:58:22 2006 -0700
+++ b/Plugins/Visualization/paranormal/pn/pnvis.c	Mon Aug 07 23:08:59 2006 -0700
@@ -143,7 +143,7 @@
   xmlSetNs (node, ns);
 
   actuators_node = xmlNewChild (node, NULL, "Actuators", NULL);
-  actuator_node = xmlNewChild (actuators_node, NULL, "BUG", NULL);
+  actuator_node = xmlNewChild (actuators_node, NULL, user_object->name, NULL);
   if (vis->root_actuator)
     pn_user_object_save_thyself (PN_USER_OBJECT (vis->root_actuator), actuator_node);