mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-02-22 23:24:22 +08:00
fix missing semi
This commit is contained in:
parent
6894749978
commit
618a945e55
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ const char *get_executable_directory(void) {
|
|||
if (g_android_executable_directory == NULL) {
|
||||
char buf[FILE_PATH_SIZE] = {0};
|
||||
getcwd(buf, sizeof(buf));
|
||||
strncat(buf, PATHSEP, 1)
|
||||
strncat(buf, PATHSEP, 1);
|
||||
g_android_executable_directory = strdup(buf);
|
||||
}
|
||||
return g_android_executable_directory;
|
||||
|
|
Loading…
Reference in a new issue