summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwtc%google.com <devnull@localhost>2012-04-04 00:09:17 +0000
committerwtc%google.com <devnull@localhost>2012-04-04 00:09:17 +0000
commitbec0c262154cdd0d873575af163e2587c58b2ecb (patch)
treea71a6418d5bf85147d91dd961a9880ce693e4bf5
parentc9042310c771c167d59990c344917507ca2c6ff5 (diff)
downloadnss-hg-bec0c262154cdd0d873575af163e2587c58b2ecb.tar.gz
Bug 715073: Use temp.data++ instead of temp.data += 1 for consistent style.
Tag: NSS_3_13_4_BRANCH
-rw-r--r--security/nss/lib/util/quickder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/security/nss/lib/util/quickder.c b/security/nss/lib/util/quickder.c
index b1956af62..95475a7d3 100644
--- a/security/nss/lib/util/quickder.c
+++ b/security/nss/lib/util/quickder.c
@@ -858,7 +858,7 @@ static SECStatus DecodeItem(void* dest,
/* change the length in the SECItem to be the number
of bits */
temp.len = (temp.len-1)*8 - (temp.data[0] & 0x7);
- temp.data += 1;
+ temp.data++;
break;
}