]> git.eshelyaron.com Git - emacs.git/commitdiff
Minor tweaks of the Cygwin code.
authorEli Zaretskii <eliz@gnu.org>
Sat, 23 Nov 2013 16:10:59 +0000 (18:10 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 23 Nov 2013 16:10:59 +0000 (18:10 +0200)
src/w32fns.c

index 3e7ba910c22be59fa07b412738d3f025cc57a478..c2d2b069ec79513d304a050afae78478958ef9f1 100644 (file)
@@ -6254,7 +6254,7 @@ file_dialog_callback (HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
       int dropdown_changed;
       int dir_index;
 #ifdef NTGUI_UNICODE
-      int use_unicode = 1;
+      const int use_unicode = 1;
 #else /* !NTGUI_UNICODE */
       int use_unicode = w32_unicode_filenames;
 #endif /* NTGUI_UNICODE */
@@ -6375,7 +6375,7 @@ Otherwise, if ONLY-DIR-P is non-nil, the user can only select directories.  */)
 #ifdef NTGUI_UNICODE
   wchar_t filename_buf_w[32*1024 + 1]; // NT kernel maximum
   OPENFILENAMEW * file_details_w = &new_file_details_w.details;
-  int use_unicode = 1;
+  const int use_unicode = 1;
 #else /* not NTGUI_UNICODE */
   struct {
     OPENFILENAMEA details;