Skip to content

Commit 8cb0b72

Browse files
authored
fixup!: lint
1 parent e72494a commit 8cb0b72

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/nbytes.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,9 +157,7 @@ const int8_t unhex_table[256] = {
157157
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
158158
-1, -1, -1, -1, -1, -1, -1, -1, -1};
159159

160-
inline char nibble(uint8_t x) {
161-
return x + '0' + ((x > 9) * 39);
162-
}
160+
inline char nibble(uint8_t x) { return x + '0' + ((x > 9) * 39); }
163161

164162
size_t HexEncode(const char *src, size_t slen, char *dst, size_t dlen) {
165163
// We know how much we'll write, just make sure that there's space.

0 commit comments

Comments
 (0)