From 7628982b9127d1e71e4c0536eb9f4aef3d02c42e Mon Sep 17 00:00:00 2001 From: jacob Date: Wed, 2 Mar 2011 00:18:03 +0000 Subject: [PATCH 1/1] Fix probably-harmless type mismatch in nogss.c (and #include "putty.h" to stop it happening again; this was spotted by GCC's "-flto" option). git-svn-id: svn://svn.tartarus.org/sgt/putty@9114 cda61777-01e9-0310-a592-d414129be87e --- nogss.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/nogss.c b/nogss.c index 57a1b372..adb1e224 100644 --- a/nogss.c +++ b/nogss.c @@ -4,7 +4,8 @@ * use for them. */ +#include "putty.h" + const int ngsslibs = 0; const char *const gsslibnames[1] = { "dummy" }; -const char *const gsslibkeywords[1] = { "dummy" }; - +const struct keyval gsslibkeywords[1] = { { "dummy", 0 } }; -- 2.11.0