mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
minor
This commit is contained in:
parent
f9857a8b0c
commit
26c28c188a
7 changed files with 15 additions and 13 deletions
|
@ -941,7 +941,7 @@ char *str_ndup(const char *src, size_t len) {
|
|||
* Returns the number of nibbles (4 bits) entered.
|
||||
*/
|
||||
int hexstring_to_u96(uint32_t *hi2, uint32_t *hi, uint32_t *lo, const char *str) {
|
||||
int n = 0, i = 0;
|
||||
unsigned int n = 0, i = 0;
|
||||
|
||||
while (sscanf(&str[i++], "%1x", &n) == 1) {
|
||||
*hi2 = (*hi2 << 4) | (*hi >> 28);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue