summaryrefslogtreecommitdiff
path: root/pcregrep.c
diff options
context:
space:
mode:
authorph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-08-17 08:26:17 +0000
committerph10 <ph10@2f5784b3-3f2a-0410-8824-cb99058d5e15>2012-08-17 08:26:17 +0000
commit312029d00d5077ed16edd038da8411dcf2b6ed35 (patch)
treef6bbeecfae9edbf7a23da5445dd6cb6dc1a41b70 /pcregrep.c
parente5aae0d579e12d0eb2e22a6e2fcb0042ba2be0fd (diff)
downloadpcre-312029d00d5077ed16edd038da8411dcf2b6ed35.tar.gz
Fix typos #DEFINE should be #define.
git-svn-id: svn://vcs.exim.org/pcre/code/trunk@1004 2f5784b3-3f2a-0410-8824-cb99058d5e15
Diffstat (limited to 'pcregrep.c')
-rw-r--r--pcregrep.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pcregrep.c b/pcregrep.c
index 6ac870e..7e5fb43 100644
--- a/pcregrep.c
+++ b/pcregrep.c
@@ -616,7 +616,7 @@ BOOL first;
WIN32_FIND_DATA data;
} directory_type;
-#DEFINE FILESEP '/'
+#define FILESEP '/'
int
isdirectory(char *filename)
@@ -722,7 +722,7 @@ return FALSE;
#else
-#DEFINE FILESEP 0;
+#define FILESEP 0;
typedef void directory_type;
int isdirectory(char *filename) { return 0; }
@@ -2874,7 +2874,7 @@ for (fn = pattern_files; fn != NULL; fn = fn->next)
{
if (!read_pattern_file(fn->name, &patterns, &patterns_last, process_options))
goto EXIT2;
- }
+ }
/* Study the regular expressions, as we will be running them many times. Unless
JIT has been explicitly disabled, arrange a stack for it to use. */