aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorvlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2007-10-02 11:23:24 +0000
committervlm <vlm@59561ff5-6e30-0410-9f3c-9617f08c8826>2007-10-02 11:23:24 +0000
commitf394b7f27430cd215407ad3ad647f1b696e6c01e (patch)
tree0b44751459b54918d6b31e9a9a1a66e4ae5f8aeb
parentaa7d089282f5473f588c0243a2018818dc0cc52c (diff)
missed backslash
git-svn-id: https://asn1c.svn.sourceforge.net/svnroot/asn1c/trunk@1391 59561ff5-6e30-0410-9f3c-9617f08c8826
-rw-r--r--skeletons/GeneralizedTime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/skeletons/GeneralizedTime.c b/skeletons/GeneralizedTime.c
index 10b73ad2..2f84dff9 100644
--- a/skeletons/GeneralizedTime.c
+++ b/skeletons/GeneralizedTime.c
@@ -108,7 +108,7 @@ static long GMTOFF(struct tm a){
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); \
} \