From: Nathan F. <nf...@au...> - 2009-08-25 16:56:16
|
Applied. -Nathan Robert Jennings wrote: > Currently, print_node_list will never print the children of a node. > Just correcting a small bit of the logic. > > Signed-off-by: Robert Jennings <rc...@li...> > > --- > src/drmgr/common_pci.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: b/src/drmgr/common_pci.c > =================================================================== > --- a/src/drmgr/common_pci.c > +++ b/src/drmgr/common_pci.c > @@ -1171,7 +1171,7 @@ print_node_list(struct dr_node *first_no > parent->drc_name, parent->loc_code); > > child = parent->children; > - while (child && child != parent->children) { > + while (child) { > dbg("%s: %s\n" > "\tdrc index: 0x%x description: %s\n" > "\tdrc name: %s\n\tloc code: %s\n", > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Powerpc-utils-devel mailing list > Pow...@li... > https://lists.sourceforge.net/lists/listinfo/powerpc-utils-devel |