summaryrefslogtreecommitdiffstats
path: root/src/gui_gtk_x11.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-06-08 21:17:43 +0200
committerBram Moolenaar <Bram@vim.org>2016-06-08 21:17:43 +0200
commit945ec093cd4ddefab930239990564b12eb232153 (patch)
treef0bbaf6b699d1d3e758e6b3a395413ef64d00742 /src/gui_gtk_x11.c
parent5ce4a0b96ab688b1ea2481c2516e2889ff6713bf (diff)
patch 7.4.1909v7.4.1909
Problem: Doubled semicolons. Solution: Reduce to one. (Dominique Pelle)
Diffstat (limited to 'src/gui_gtk_x11.c')
-rw-r--r--src/gui_gtk_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_gtk_x11.c b/src/gui_gtk_x11.c
index cd115b8058..620c892283 100644
--- a/src/gui_gtk_x11.c
+++ b/src/gui_gtk_x11.c
@@ -2205,7 +2205,7 @@ parse_uri_list(int *count, char_u *data, int len)
{
int n = 0;
char_u *tmp = NULL;
- char_u **array = NULL;;
+ char_u **array = NULL;
if (data != NULL && len > 0 && (tmp = (char_u *)alloc(len + 1)) != NULL)
{