mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Another attempt to make mimedb.cpp compile on Linux
This commit is contained in:
parent
4b6c6c59b5
commit
5ecd350311
1 changed files with 3 additions and 4 deletions
|
@ -678,8 +678,7 @@ static char *get_action( const char *mimetype )
|
|||
{
|
||||
char *res=0;
|
||||
|
||||
const char *launcher;
|
||||
char *end;
|
||||
const char *launcher, *end;
|
||||
string_list_t mime_filenames;
|
||||
|
||||
const char *launcher_str = NULL;
|
||||
|
@ -741,8 +740,8 @@ static char *get_action( const char *mimetype )
|
|||
/* Skip the = */
|
||||
launcher++;
|
||||
|
||||
/* Make one we can change */
|
||||
std::string mut_launcher = launcher;
|
||||
/* Make one we can change */
|
||||
std::string mut_launcher = launcher;
|
||||
|
||||
/* Only use first launcher */
|
||||
end = strchr( launcher, ';' );
|
||||
|
|
Loading…
Reference in a new issue