summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/scope.c b/scope.c
index 3262794dd2..595fe12665 100644
--- a/scope.c
+++ b/scope.c
@@ -673,11 +673,11 @@ Perl_leave_scope(pTHX_ I32 base)
str = (char*)SSPOPPTR;
ptr = SSPOPPTR;
if (*(char**)ptr != str) {
- #ifdef NETWARE
+#ifdef NETWARE
PerlMem_free(*(char**)ptr);
- #else
+#else
PerlMemShared_free(*(char**)ptr);
- #endif
+#endif
*(char**)ptr = str;
}
break;