From: jacob Date: Wed, 2 Mar 2011 00:18:03 +0000 (+0000) Subject: Fix probably-harmless type mismatch in nogss.c (and #include "putty.h" to stop X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/7628982b9127d1e71e4c0536eb9f4aef3d02c42e 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 --- 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 } };