Commit b34f7bf1 authored by Evgeniy Isaev's avatar Evgeniy Isaev Committed by Mouse

Fixed `shadow` warning

parent ebc4c3e1
...@@ -236,10 +236,11 @@ REAL__dump(double d, int canonical, asn_app_consume_bytes_f *cb, void *app_key) ...@@ -236,10 +236,11 @@ REAL__dump(double d, int canonical, asn_app_consume_bytes_f *cb, void *app_key)
assert(*s == 0x45); assert(*s == 0x45);
{ {
int sign;
char *E = s; char *E = s;
char *expptr = ++E; char *expptr = ++E;
char *s = expptr;
int sign; s = expptr;
if(*expptr == 0x2b /* '+' */) { if(*expptr == 0x2b /* '+' */) {
/* Skip the "+" */ /* Skip the "+" */
......
...@@ -45,10 +45,10 @@ ...@@ -45,10 +45,10 @@
#undef RETURN #undef RETURN
#define RETURN(_code) \ #define RETURN(_code) \
do { \ do { \
asn_dec_rval_t rval; \ asn_dec_rval_t _rval; \
rval.code = _code; \ _rval.code = _code; \
rval.consumed = consumed_myself; \ _rval.consumed = consumed_myself; \
return rval; \ return _rval; \
} while(0) } while(0)
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment