diff src/conversation.c @ 4160:fcc6db86f5c7

[gaim-migrate @ 4389] Nicola's Lichtmaier (niqueco) writes: "Several things: I've added some "const"s here and there. I've declared some functions as "pure" or "const" (helps gcc to optimize the code). I've declared debug_printf so that gcc can check the printf format string (this makes visible several formatting bugs!) I've changed minor things in util.c (why having an useless extra call to g_strncasecmp?). And I've added some _() as usual. I hope some of this gets checked in, if not all." committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 31 Dec 2002 18:19:14 +0000
parents 78eeef03b419
children d3c8d2b40494
line wrap: on
line diff
--- a/src/conversation.c	Tue Dec 31 05:24:17 2002 +0000
+++ b/src/conversation.c	Tue Dec 31 18:19:14 2002 +0000
@@ -317,7 +317,7 @@
 		set_convo_title(cnv);
 }
 
-struct log_conversation *find_log_info(char *name)
+struct log_conversation *find_log_info(const char *name)
 {
 	char *pname = g_malloc(1024);
 	GList *lc = log_conversations;