1
0
mirror of git://projects.qi-hardware.com/fped.git synced 2024-07-02 18:12:01 +03:00

- stupid typo made us crash when setting the package name

git-svn-id: http://svn.openmoko.org/trunk/eda/fped@5481 99fdad57-331a-0410-800a-d7fa5415bdb3
This commit is contained in:
werner 2009-08-18 20:57:09 +00:00
parent 37b52f23fe
commit f368014b3c

2
inst.c
View File

@ -1016,7 +1016,7 @@ void inst_commit(void)
struct pkg *pkg;
if (active_pkg) {
for (pkg = pkgs; pkgs && pkg->name != active_pkg->name;
for (pkg = pkgs; pkg && pkg->name != active_pkg->name;
pkg = pkg->next);
active_pkg = pkg;
}