syncing between computers..
[systembsd.git] / src / main.c
index 8ba890714434b4a2285953854ff04766f222aa10..c19b489c31633dea4c4a60cf041e8b8a23445971 100644 (file)
@@ -1,13 +1,12 @@
 #include <gio/gio.h>
-#include "modules/hostnamed/hostnamed.c"
+#include "interfaces/hostnamed/hostnamed.c"
 
 int main() {
-       GMainLoop *loop;
+       GMainLoop *mloop = NULL;
        
+       mloop = g_main_loop_new(NULL, FALSE);
        hostnamed_init();
-       
-       loop = g_main_loop_new(NULL, FALSE);
-       g_main_loop_run(loop);
+       g_main_loop_run(mloop);
 
        return 0;
 }