diff options
author | Ales Kozumplik <akozumpl@redhat.com> | 2010-03-02 09:46:52 +0100 |
---|---|---|
committer | Ales Kozumplik <akozumpl@redhat.com> | 2010-03-08 14:02:30 +0100 |
commit | 22fd31d247d8fe36587e85732be8cbb067a0abeb (patch) | |
tree | f779c26505c0485fe5fab887a85d40d8e761fbdf /loader/modules.c | |
parent | d42a7a7e21c6b4a45437a6139e169ccaaf17784b (diff) | |
download | anaconda-22fd31d247d8fe36587e85732be8cbb067a0abeb.tar.gz anaconda-22fd31d247d8fe36587e85732be8cbb067a0abeb.tar.xz anaconda-22fd31d247d8fe36587e85732be8cbb067a0abeb.zip |
move log.c from loader into isys.
This is in preparation to use logging from imount.c. We don't want a dependency
of isys on loader, instead move logging code into isys and change loader sources
to use the log.h header in isys.
Diffstat (limited to 'loader/modules.c')
-rw-r--r-- | loader/modules.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/loader/modules.c b/loader/modules.c index 07f781a24..0944b97b1 100644 --- a/loader/modules.c +++ b/loader/modules.c @@ -40,8 +40,9 @@ #include <unistd.h> #include <glib.h> +#include "../isys/log.h" + #include "loader.h" -#include "log.h" #include "modules.h" #include "windows.h" |