This commit is contained in:
Steve Underwood 2014-06-20 02:58:33 +08:00
parent f7c6c90749
commit b15f373cd9
2 changed files with 5 additions and 4 deletions

View File

@ -188,8 +188,8 @@ static int parse_tone(super_tone_rx_descriptor_t *desc, int tone_id, super_tone_
length*1000.0 + 0.5,
cycles);
*tree = treep;
tree = &(treep->next);
parse_tone(desc, tone_id, &(treep->nest), doc, ns, cur);
tree = &treep->next;
parse_tone(desc, tone_id, &treep->nest, doc, ns, cur);
}
/*endif*/
cur = cur->next;

View File

@ -33,6 +33,7 @@
#include "config.h"
#endif
#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
#include <fcntl.h>
@ -165,8 +166,8 @@ static int parse_tone(super_tone_tx_step_t **tree, xmlDocPtr doc, xmlNsPtr ns, x
length*1000.0 + 0.5,
cycles);
*tree = treep;
tree = &(treep->next);
parse_tone(&(treep->nest), doc, ns, cur);
tree = &treep->next;
parse_tone(&treep->nest, doc, ns, cur);
}
/*endif*/
cur = cur->next;