Typo fix, thanks to Salvador Garcia for the fix.

Reviewed by: Fred Moyer
Tested by: Fred Moyer


git-svn-id: https://svn.apache.org/repos/asf/perl/modperl/branches/1.x@1152547 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/Changes b/Changes
index 457da44..2cf4af8 100644
--- a/Changes
+++ b/Changes
@@ -10,6 +10,9 @@
 
 =item 1.32-dev
 
+Post RT 64999 typo spot in CvGV macro
+[Salvador Ortiz Garcia <sog@msg.com.mx>]
+
 RT 64999, perl 5.14 compatibility, GvCV and GvGP lvalue changes in perl core
 [Todd Wade <sendwade@hotmail.com>]
 
diff --git a/src/modules/perl/mod_perl.h b/src/modules/perl/mod_perl.h
index 1f13e90..5c654ba 100644
--- a/src/modules/perl/mod_perl.h
+++ b/src/modules/perl/mod_perl.h
@@ -1030,8 +1030,8 @@
 #define GvCV_set(gv, cv) (GvCV(gv) = (cv))
 #endif
 
-#ifndef GvCV_set
-#define CvGV_set(gv, cv) (CvVG(gv) = (cv))
+#ifndef CvGV_set
+#define CvGV_set(gv, cv) (CvGV(gv) = (cv))
 #endif
 
 typedef struct {