mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
const and bad OR
This commit is contained in:
parent
183b078969
commit
b0dd246d94
6 changed files with 24 additions and 15 deletions
|
@ -82,7 +82,7 @@ https://github.com/ApertureLabsLtd/RFIDler/blob/master/firmware/Pic32/RFIDler.X/
|
|||
*/
|
||||
// convert hex to sequence of 0/1 bit values
|
||||
// returns number of bits converted
|
||||
int hex2binarray(char *target, char *source) {
|
||||
int hex2binarray(char *target, const char *source) {
|
||||
return hex2binarray_n(target, source, strlen(source));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue