oops, sorry :) 2012/6/24 Enlightenment SVN <[email protected]>
> Log: > edje: Resistance is futile. The B0rk. > > > Author: cedric > Date: 2012-06-23 23:01:12 -0700 (Sat, 23 Jun 2012) > New Revision: 72754 > Trac: http://trac.enlightenment.org/e/changeset/72754 > > Modified: > trunk/edje/src/bin/edje_cc_out.c > > Modified: trunk/edje/src/bin/edje_cc_out.c > =================================================================== > --- trunk/edje/src/bin/edje_cc_out.c 2012-06-24 05:35:49 UTC (rev 72753) > +++ trunk/edje/src/bin/edje_cc_out.c 2012-06-24 06:01:12 UTC (rev 72754) > @@ -2144,15 +2144,15 @@ > } > else > { > - char *aliased; > - aliased = eina_hash_find(part->pc->aliased, part->name); > - if (!aliased) > - aliased = part->name; > + char *alias; > + alias = eina_hash_find(part->pc->alias, part->name); > + if (!alias) > + alias = part->name; > for (i = 0; i < part->pc->parts_count; ++i) > { > ep = part->pc->parts[i]; > > - if ((ep->name) && (!strcmp(ep->name, aliased))) > + if ((ep->name) && (!strcmp(ep->name, alias))) > { > handle_slave_lookup(part_slave_lookups, part->dest, > ep->id); > *(part->dest) = ep->id; > @@ -2162,8 +2162,8 @@ > > if (i == part->pc->parts_count) > { > - ERR("%s: Error. Unable to find part name \"%s\".", > - progname, part->name); > + ERR("%s: Error. Unable to find part name \"%s\" needed > in group '%s'.", > + progname, alias, part->pc->part); > exit(-1); > } > } > > > > ------------------------------------------------------------------------------ > Live Security Virtual Conference > Exclusive live event will cover all the ways today's security and > threat landscape has changed and how IT managers can respond. Discussions > will include endpoint security, mobile security and the latest in malware > threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ > _______________________________________________ > enlightenment-svn mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/enlightenment-svn > -- Michaël Bouchaud (yoz) <[email protected]> ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ enlightenment-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
