1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 09:27:59 +00:00

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).

[originally from svn r9114]
This commit is contained in:
Jacob Nevins 2011-03-02 00:18:03 +00:00
parent 767778cf1b
commit 91131fd197

View File

@ -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 } };