From: ben Date: Sat, 10 May 2003 11:57:55 +0000 (+0000) Subject: Extra const for loop_init() and null_init(). X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/50a0d2b74b33d5e8b8add1a3df94e83ecfa584b6 Extra const for loop_init() and null_init(). git-svn-id: svn://svn.tartarus.org/sgt/putty@3180 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/testback.c b/testback.c index 9ca9c49e..22860f33 100644 --- a/testback.c +++ b/testback.c @@ -1,4 +1,4 @@ -/* $Id: testback.c,v 1.8 2003/04/05 14:32:58 ben Exp $ */ +/* $Id: testback.c,v 1.9 2003/05/10 11:57:55 ben Exp $ */ /* * Copyright (c) 1999 Simon Tatham * Copyright (c) 1999 Ben Harris @@ -33,8 +33,10 @@ #include "putty.h" -static char *null_init(void *, void **, Config *, char *, int, char **, int); -static char *loop_init(void *, void **, Config *, char *, int, char **, int); +static const char *null_init(void *, void **, Config *, char *, int, char **, + int); +static const char *loop_init(void *, void **, Config *, char *, int, char **, + int); static void null_free(void *); static void loop_free(void *); static void null_reconfig(void *, Config *); @@ -68,16 +70,16 @@ struct loop_state { Terminal *term; }; -static char *null_init(void *frontend_handle, void **backend_handle, - Config *cfg, char *host, int port, char **realhost, - int nodelay) { +static const char *null_init(void *frontend_handle, void **backend_handle, + Config *cfg, char *host, int port, + char **realhost, int nodelay) { return NULL; } -static char *loop_init(void *frontend_handle, void **backend_handle, - Config *cfg, char *host, int port, char **realhost, - int nodelay) { +static const char *loop_init(void *frontend_handle, void **backend_handle, + Config *cfg, char *host, int port, + char **realhost, int nodelay) { struct loop_state *st = snew(struct loop_state); st->term = frontend_handle;