summaryrefslogtreecommitdiff
path: root/new/init_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'new/init_unix.c')
-rw-r--r--new/init_unix.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/new/init_unix.c b/new/init_unix.c
index 67954c0..60abc91 100644
--- a/new/init_unix.c
+++ b/new/init_unix.c
@@ -5,10 +5,13 @@ struct uiInitError {
GError *err;
};
+uiInitOptions options;
+
uiInitError *uiInit(uiInitOptions *o)
{
uiInitError *err;
+ options = *o;
err = uiNew(uiInitError);
if (gtk_init_with_args(NULL, NULL, NULL, NULL, NULL, &(err->err)) == FALSE)
return err;