missed backslash

git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1391 59561ff5-6e30-0410-9f3c-9617f08c8826
diff --git a/skeletons/GeneralizedTime.c b/skeletons/GeneralizedTime.c
index 10b73ad..2f84dff 100644
--- a/skeletons/GeneralizedTime.c
+++ b/skeletons/GeneralizedTime.c
@@ -108,7 +108,7 @@
 		if(tzlen < sizeof(tzoldbuf)) {				\
 			tzold = memcpy(tzoldbuf, tzold, tzlen + 1);	\
 		} else {						\
-			char *dupptr = tzold;
+			char *dupptr = tzold;				\
 			tzold = MALLOC(tzlen + 1);			\
 			if(tzold) memcpy(tzold, dupptr, tzlen + 1);	\
 		}							\