From 0ff41a11d2814232ea4b460a1ce8ebb72eb157a9 Mon Sep 17 00:00:00 2001 From: "konstantin@mysql.com" <> Date: Thu, 23 Feb 2006 14:18:17 +0300 Subject: Fix an const char->char conversion error. --- dbug/dbug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dbug') diff --git a/dbug/dbug.c b/dbug/dbug.c index f53cb525912..dc5b06a63e2 100644 --- a/dbug/dbug.c +++ b/dbug/dbug.c @@ -209,7 +209,7 @@ struct settings { static BOOLEAN init_done= FALSE; /* Set to TRUE when initialization done */ static struct settings init_settings; -static char *db_process= 0; /* Pointer to process name; argv[0] */ +static const char *db_process= 0;/* Pointer to process name; argv[0] */ typedef struct _db_code_state_ { const char *process; /* Pointer to process name; usually argv[0] */ -- cgit v1.2.1