diff options
author | Micael Karlberg <[email protected]> | 2011-05-11 12:14:07 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-05-11 12:14:07 +0200 |
commit | 3122d9125723578e140082a499c08a27480de67b (patch) | |
tree | 7383ba1970b1da3447810ea3a13e83f26fac14b8 /lib/snmp/src | |
parent | 4dde37d7d40d213ba052a4f6c18b7c257bf93960 (diff) | |
download | otp-3122d9125723578e140082a499c08a27480de67b.tar.gz otp-3122d9125723578e140082a499c08a27480de67b.tar.bz2 otp-3122d9125723578e140082a499c08a27480de67b.zip |
Cosmetics.
Diffstat (limited to 'lib/snmp/src')
-rw-r--r-- | lib/snmp/src/misc/snmp_pdus.erl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/snmp/src/misc/snmp_pdus.erl b/lib/snmp/src/misc/snmp_pdus.erl index 213d0226b1..82618a0b86 100644 --- a/lib/snmp/src/misc/snmp_pdus.erl +++ b/lib/snmp/src/misc/snmp_pdus.erl @@ -281,7 +281,8 @@ dec_value([65 | Bytes]) -> (Value < 0) -> 16#ffffffff + Value + 1; true -> - exit({error, {bad_counter32, Value}}) end, + exit({error, {bad_counter32, Value}}) + end, {{'Counter32', Value2}, Rest}; dec_value([66 | Bytes]) -> {Value, Rest} = dec_integer_notag(Bytes), |