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:
authorSimon Tatham <anakin@pobox.com>2003-05-04 18:18:18 +0400
committerSimon Tatham <anakin@pobox.com>2003-05-04 18:18:18 +0400
commit6bb121ecb910115abe2ccba60938d18cbf826934 (patch)
treed3b186ab58046d2ba4cd75fa36e920332211a7d3 /console.c
parent0bfe876b5702a11c79ab38f6eae0eda0efa51091 (diff)
Colin's const-fixing Patch Of Death. Seems to build fine on Windows
as well as Unix, so it can go in. [originally from svn r3162]
Diffstat (limited to 'console.c')
-rw-r--r--console.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/console.c b/console.c
index 90b5fa4e..fe201347 100644
--- a/console.c
+++ b/console.c
@@ -270,7 +270,7 @@ void console_provide_logctx(void *logctx)
console_logctx = logctx;
}
-void logevent(void *frontend, char *string)
+void logevent(void *frontend, const char *string)
{
if (console_logctx)
log_eventlog(console_logctx, string);