diff options
author | unknown <konstantin@mysql.com> | 2006-02-23 14:18:17 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2006-02-23 14:18:17 +0300 |
commit | b26c3ef461d0471b73a60515d08b85725b2d8b80 (patch) | |
tree | 70f251b951698f13825ec658fb8955b2ef2716c1 /dbug | |
parent | c330dc839bf2cfa45a0616b414d5054980e0e506 (diff) | |
download | mariadb-git-b26c3ef461d0471b73a60515d08b85725b2d8b80.tar.gz |
Fix an const char->char conversion error.
Diffstat (limited to 'dbug')
-rw-r--r-- | dbug/dbug.c | 2 |
1 files changed, 1 insertions, 1 deletions
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] */ |