mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
make travis happy
This commit is contained in:
parent
8b25c952f4
commit
edc9727e4b
1 changed files with 2 additions and 2 deletions
|
@ -1475,8 +1475,8 @@ static int filelist(const char *path, const char *ext, uint8_t last, bool tentat
|
|||
continue;
|
||||
|
||||
snprintf(newpath, sizeof(newpath), "%s", path);
|
||||
strncat(newpath, namelist[i]->d_name, sizeof(newpath) - strlen(newpath));
|
||||
strncat(newpath, "/", sizeof(newpath) - strlen(newpath));
|
||||
strncat(newpath, namelist[i]->d_name, sizeof(newpath) - strlen(newpath) - 1);
|
||||
strncat(newpath, "/", sizeof(newpath) - strlen(newpath) - 1);
|
||||
|
||||
filelist(newpath, ext, last + ((i == n - 1) << (indent + 1)), tentative, indent + 1, strlen(path));
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue