aboutsummaryrefslogtreecommitdiffstats
path: root/tools/lemon
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-02-01 23:02:54 +0000
committerBill Meier <wmeier@newsguy.com>2011-02-01 23:02:54 +0000
commitb0aac9d9c225a33a4d2500671d2123e6276f6eeb (patch)
treecdf7ba7a601b2e881fa41bd3fb8048f9b8cff001 /tools/lemon
parent3fa9788f21f24ecfd8b9f20ebe623110d9785215 (diff)
WIN32 ==> _WIN32
svn path=/trunk/; revision=35745
Diffstat (limited to 'tools/lemon')
-rw-r--r--tools/lemon/lemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lemon/lemon.c b/tools/lemon/lemon.c
index 26961660ef..d398d15a44 100644
--- a/tools/lemon/lemon.c
+++ b/tools/lemon/lemon.c
@@ -1389,7 +1389,7 @@ make_basename(char* fullname)
/* Find the last forward slash */
cp = strrchr(fullname, '/');
-#ifdef WIN32
+#ifdef _WIN32
/* On Windows, if no forward slash was found, look ofr
* backslash also */
if (!cp)