diff mcabber/src/hooks.c @ 281:f562b9af2de7

Add "const" specifier in prototypes It's easier then to know when variables are read-only (and shouldn't be freed).
author Mikael Berthe <mikael@lilotux.net>
date Wed, 06 Jul 2005 22:18:05 +0100
parents 73f6ce668ba8
children 45076d02eeef 33b8e801ffa6
line wrap: on
line diff
--- a/mcabber/src/hooks.c	Wed Jul 06 21:28:37 2005 +0100
+++ b/mcabber/src/hooks.c	Wed Jul 06 22:18:05 2005 +0100
@@ -90,7 +90,7 @@
 //  hk_ext_cmd_init()
 // Initialize external command variable.
 // Can be called with parameter NULL to reset and free memory.
-void hk_ext_cmd_init(char *command)
+void hk_ext_cmd_init(const char *command)
 {
   if (extcommand) {
     g_free(extcommand);