dont default to NULL for the engine name
This commit is contained in:
parent
06356d337c
commit
3921ce3067
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ static void parse_assign(char *name, ParseToken *value)
|
||||||
void engine_startup()
|
void engine_startup()
|
||||||
{
|
{
|
||||||
module = NULL;
|
module = NULL;
|
||||||
engine_name = NULL;
|
engine_name = g_strdup(DEFAULT_ENGINE);
|
||||||
engine_theme = NULL;
|
engine_theme = NULL;
|
||||||
engine_layout = g_strdup("NDSLIMC");
|
engine_layout = g_strdup("NDSLIMC");
|
||||||
engine_font = g_strdup("Sans-7");
|
engine_font = g_strdup("Sans-7");
|
||||||
|
|
Loading…
Reference in a new issue