mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 21:33:47 -07:00
FIX: removing compiler warning about double const.
thanks to @spaceteddy ref: https://github.com/iceman1001/proxmark3/issues/83
This commit is contained in:
parent
aa5cba4ca3
commit
1b6cc9746e
2 changed files with 4 additions and 4 deletions
|
@ -222,12 +222,12 @@ static void dumpAllHelp(int markdown)
|
|||
static char *my_executable_path = NULL;
|
||||
static char *my_executable_directory = NULL;
|
||||
|
||||
const char const *get_my_executable_path(void)
|
||||
const char *get_my_executable_path(void)
|
||||
{
|
||||
return my_executable_path;
|
||||
}
|
||||
|
||||
const char const *get_my_executable_directory(void)
|
||||
const char *get_my_executable_directory(void)
|
||||
{
|
||||
return my_executable_directory;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue