aboutsummaryrefslogtreecommitdiffstats
path: root/main/ctags/error-format.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/ctags/error-format.patch')
-rw-r--r--main/ctags/error-format.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/main/ctags/error-format.patch b/main/ctags/error-format.patch
deleted file mode 100644
index 61cf7a9d380..00000000000
--- a/main/ctags/error-format.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/lregex.c b/lregex.c
-index 59f5df6..f76aac0 100644
---- a/lregex.c
-+++ b/lregex.c
-@@ -408,7 +408,7 @@ static void processLanguageRegex (const langType language,
- const char* regexfile = parameter + 1;
- FILE* const fp = fopen (regexfile, "r");
- if (fp == NULL)
-- error (WARNING | PERROR, regexfile);
-+ error (WARNING | PERROR, "%s", regexfile);
- else
- {
- vString* const regex = vStringNew ();