aboutsummaryrefslogtreecommitdiffstats
path: root/lcd4linux.c
diff options
context:
space:
mode:
authorreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-01-10 17:45:26 +0000
committerreinelt <reinelt@3ae390bd-cb1e-0410-b409-cd5a39f66f1f>2004-01-10 17:45:26 +0000
commit76ffcfa4c6fb4cf45126bfd97c3ab0affe1e8e0d (patch)
tree26e332d918691bb0972ba80d6b0d569be933b248 /lcd4linux.c
parent390e66bc2d925669451ece6ce01091792da46634 (diff)
downloadlcd4linux-76ffcfa4c6fb4cf45126bfd97c3ab0affe1e8e0d.tar.gz
[lcd4linux @ 2004-01-10 17:45:26 by reinelt]
changed initialization order so cfg() gets initialized before plugins. This way a plugin's init() can use cfg_get(). Thanks to Xavier for reporting this one! git-svn-id: https://ssl.bulix.org/svn/lcd4linux/trunk@303 3ae390bd-cb1e-0410-b409-cd5a39f66f1f
Diffstat (limited to 'lcd4linux.c')
-rw-r--r--lcd4linux.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/lcd4linux.c b/lcd4linux.c
index 28e39ff..745c8e3 100644
--- a/lcd4linux.c
+++ b/lcd4linux.c
@@ -1,4 +1,4 @@
-/* $Id: lcd4linux.c,v 1.56 2004/01/09 17:03:07 reinelt Exp $
+/* $Id: lcd4linux.c,v 1.57 2004/01/10 17:45:26 reinelt Exp $
*
* LCD4Linux
*
@@ -22,6 +22,11 @@
*
*
* $Log: lcd4linux.c,v $
+ * Revision 1.57 2004/01/10 17:45:26 reinelt
+ * changed initialization order so cfg() gets initialized before plugins.
+ * This way a plugin's init() can use cfg_get().
+ * Thanks to Xavier for reporting this one!
+ *
* Revision 1.56 2004/01/09 17:03:07 reinelt
* initiated transfer to new driver architecture
* new file 'drv.c' will someday replace 'display.c'
@@ -456,10 +461,10 @@ int main (int argc, char *argv[])
info ("invoked without full path; restart may not work!");
}
- if (plugin_init()==-1)
+ if (cfg_init(cfg)==-1)
exit (1);
- if (cfg_init(cfg)==-1)
+ if (plugin_init()==-1)
exit (1);
display=cfg_get(NULL, "Display", NULL);