aboutsummaryrefslogtreecommitdiff
path: root/src/tag.c
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-03-26 03:16:09 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-26 16:28:13 -0300
commitbd78282940b246bad34c629fa81150d4073cc330 (patch)
tree5543be6d10871d07d708a209b19ea7716f5ce701 /src/tag.c
parent07dad7acf3d49b3136c5aad2c9fe05abb9aaf032 (diff)
downloadrneovim-bd78282940b246bad34c629fa81150d4073cc330.tar.gz
rneovim-bd78282940b246bad34c629fa81150d4073cc330.tar.bz2
rneovim-bd78282940b246bad34c629fa81150d4073cc330.zip
Use memcmp instead of vim_memcmp
Diffstat (limited to 'src/tag.c')
-rw-r--r--src/tag.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.c b/src/tag.c
index 3fa209e4b9..bb772e47f1 100644
--- a/src/tag.c
+++ b/src/tag.c
@@ -1927,7 +1927,7 @@ parse_line:
mfp2 = ((struct match_found **)
(ga_match[mtt].ga_data))[i];
if (mfp2->len == mfp->len
- && vim_memcmp(mfp2->match, mfp->match,
+ && memcmp(mfp2->match, mfp->match,
(size_t)mfp->len) == 0)
break;
line_breakcheck();