summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
Diffstat (limited to 'windows')
-rw-r--r--windows/gui.c2
-rw-r--r--windows/prefs.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/windows/gui.c b/windows/gui.c
index 159e8f0c1..f8d57fd33 100644
--- a/windows/gui.c
+++ b/windows/gui.c
@@ -931,7 +931,7 @@ nsws_window_command(HWND hwnd,
nsoption_set_int(window_y, r.top);
nsoption_set_int(window_width, r.right - r.left);
nsoption_set_int(window_height, r.bottom - r.top);
- nsoption_write(options_file_location);
+ nsoption_write(options_file_location, NULL, NULL);
break;
}
diff --git a/windows/prefs.c b/windows/prefs.c
index 93a30b00f..e933cc10d 100644
--- a/windows/prefs.c
+++ b/windows/prefs.c
@@ -675,7 +675,6 @@ void nsws_prefs_dialog_init(HINSTANCE hinst, HWND parent)
win_perror("PropertySheet");
} else if (ret > 0) {
/* user saved changes */
- nsoption_write(options_file_location);
+ nsoption_write(options_file_location, NULL, NULL);
}
-
}