diff options
author | Bram Moolenaar <Bram@vim.org> | 2011-05-10 15:52:15 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2011-05-10 15:52:15 +0200 |
commit | 18e0bfb07ce7bd8e57687152e417a5a4d9743b37 (patch) | |
tree | becdfe16dd290137aa188c074710dcb274c043ef /src/gui_riscos.c | |
parent | 5897e0c47029512890ecec2c8dddfb9103b02d88 (diff) | |
download | vim-git-18e0bfb07ce7bd8e57687152e417a5a4d9743b37.tar.gz |
updated for version 7.3.184v7.3.184
Problem: Static code analysis errors in riscOS.
Solution: Make buffer size bigger. (Dominique Pelle)
Diffstat (limited to 'src/gui_riscos.c')
-rw-r--r-- | src/gui_riscos.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui_riscos.c b/src/gui_riscos.c index 90634fad7..4a9378b1f 100644 --- a/src/gui_riscos.c +++ b/src/gui_riscos.c @@ -1756,7 +1756,7 @@ ro_mouse(block) if (button & 0x444) { - int front_block[10]; + int front_block[64]; /* Dragging with Select - bring window to front first */ front_block[0] = gui.window_handle; swi(Wimp_GetWindowState, 0, front_block); @@ -1874,7 +1874,7 @@ ro_continue_drag(block) if (ro_dragging == DRAG_RESIZE_WINDOW) { - /* Resizeing the main window. */ + /* Resizing the main window. */ block[2] = y; block[3] = x; ro_open_main(block); @@ -2651,7 +2651,7 @@ clip_mch_request_selection(VimClipboard *cbd) long_u length; block[0] = 48; /* Size of block. */ - block[3] = 0; /* Orinial message. */ + block[3] = 0; /* Original message. */ block[4] = 0x10; /* Data request. */ block[5] = gui.window_handle; block[6] = RO_LOAD_CLIPBOARD; /* Internal handle. */ |