diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2013-12-15 18:40:44 +0100 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2013-12-15 18:40:44 +0100 |
commit | 119f64dbf65b14c54cd26e64386ccb2e2a7091fc (patch) | |
tree | 1c481b812ef9953015a50886b1a4ae09879a09cc /src/w32term.c | |
parent | cdeb10ce512b9b579add9dc358d90e1ab6475f6e (diff) | |
download | emacs-119f64dbf65b14c54cd26e64386ccb2e2a7091fc.tar.gz |
src/w32*.c: Silence compiler warnings.
* w32fns.c (Fw32_shell_execute): Remove unused local variable.
(Fx_file_dialog): Add parentheses around && to silence warning.
* w32term.c (construct_drag_n_drop): Remove unused local variable.
Diffstat (limited to 'src/w32term.c')
-rw-r--r-- | src/w32term.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/w32term.c b/src/w32term.c index 6537b2205fe..e3cdc1d0838 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -3137,7 +3137,7 @@ construct_drag_n_drop (struct input_event *result, W32Msg *msg, struct frame *f) char name_a[MAX_PATH]; char file[MAX_UTF8_PATH]; #endif - int i, len; + int i; result->kind = DRAG_N_DROP_EVENT; result->code = 0; |