Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'windows/winjump.c')
-rw-r--r--windows/winjump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/windows/winjump.c b/windows/winjump.c
index 7e7b34e8..e42ba275 100644
--- a/windows/winjump.c
+++ b/windows/winjump.c
@@ -383,7 +383,6 @@ static IShellLink *make_shell_link(const char *appname,
{
IShellLink *ret;
char *app_path, *param_string, *desc_string;
- void *psettings_tmp;
IPropertyStore *pPS;
PROPVARIANT pv;
@@ -409,7 +408,7 @@ static IShellLink *make_shell_link(const char *appname,
/* Check if this is a valid session, otherwise don't add. */
if (sessionname) {
- psettings_tmp = open_settings_r(sessionname);
+ settings_r *psettings_tmp = open_settings_r(sessionname);
if (!psettings_tmp) {
sfree(app_path);
return NULL;