Fix style on left shift operations
Signed-off-by: Agathiyan Bragadeesh <agathiyan.bragadeesh2@arm.com>
diff --git a/library/x509.c b/library/x509.c
index 85aaf06..f44860b 100644
--- a/library/x509.c
+++ b/library/x509.c
@@ -876,7 +876,7 @@
c = name->val.tag;
lowbits = (c & 0x0F);
- highbits = c>>4;
+ highbits = c >> 4;
s[1] = nibble_to_hex_digit(highbits);
s[2] = nibble_to_hex_digit(lowbits);
@@ -893,7 +893,7 @@
c = name->val.p[i-asn1_len_size];
}
lowbits = (c & 0x0F);
- highbits = c>>4;
+ highbits = c >> 4;
s[j++] = nibble_to_hex_digit(highbits);
s[j] = nibble_to_hex_digit(lowbits);
}
@@ -924,7 +924,7 @@
}
s[j++] = '\\';
lowbits = (c & 0x0F);
- highbits = c>>4;
+ highbits = c >> 4;
s[j++] = nibble_to_hex_digit(highbits);
s[j] = nibble_to_hex_digit(lowbits);
} else {