mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
cppchecker fix
This commit is contained in:
parent
6737f6f3cd
commit
90fb78ff1b
1 changed files with 3 additions and 3 deletions
|
@ -91,12 +91,12 @@ uint8_t pi[35] = {
|
|||
* @param n bitnumber
|
||||
* @return
|
||||
*/
|
||||
#define getSixBitByte(c, n) ((uint8_t)(((c) >> (42 - 6 * (n))) & 0x3F))
|
||||
/*
|
||||
//#define getSixBitByte(c, n) ((uint8_t)(((c) >> (42 - 6 * (n))) & 0x3F))
|
||||
|
||||
static inline uint8_t getSixBitByte(uint64_t c, int n) {
|
||||
return (c >> (42 - 6 * n)) & 0x3F;
|
||||
}
|
||||
*/
|
||||
|
||||
/**
|
||||
* @brief Puts back a six-bit 'byte' into a uint64_t.
|
||||
* @param c buffer
|
||||
|
|
Loading…
Reference in a new issue