mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
unify text - step 1
This commit is contained in:
parent
090f31d0a7
commit
875b3c44b4
40 changed files with 167 additions and 128 deletions
|
@ -104,11 +104,13 @@ kvsprintf(char const *fmt, void *arg, int radix, va_list ap) {
|
|||
num = 0;
|
||||
d = (char *) arg;
|
||||
|
||||
if (fmt == NULL)
|
||||
if (fmt == NULL) {
|
||||
fmt = "(fmt null)\n";
|
||||
}
|
||||
|
||||
if (radix < 2 || radix > 36)
|
||||
if (radix < 2 || radix > 36) {
|
||||
radix = 10;
|
||||
}
|
||||
|
||||
for (;;) {
|
||||
padc = ' ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue