On Tue, 7 May 2002, Taybin Rutkin wrote:
> On Tue, 7 May 2002 [EMAIL PROTECTED] wrote:
>
> gchar buf[16];
>
> for (guint i = 0; i < port_count(); i++){
> if (LADSPA_IS_PORT_CONTROL(port_descriptors()[i])){
> child = new XMLNode("port");
> snprintf(buf, sizeof(buf), "%u", i);
> child->add_property("port-number", string(buf));
This should be---> child->add_property("port", string(buf));
Taybin
