null+****@clear*****
null+****@clear*****
2011年 11月 8日 (火) 01:03:41 JST
Kazuhiko 2011-11-07 16:03:41 +0000 (Mon, 07 Nov 2011)
New Revision: c355bc55f001144096d622e2b613a9b7b0c81ca5
Log:
explicitly convert string constant to char* [-Werror=write-strings]
Modified files:
ha_mroonga.cc
Modified: ha_mroonga.cc (+1 -1)
===================================================================
--- ha_mroonga.cc 2011-11-07 15:24:41 +0000 (7f30834)
+++ ha_mroonga.cc 2011-11-07 16:03:41 +0000 (56c6cc9)
@@ -114,7 +114,7 @@ grn_log_level mrn_log_level_default = GRN_LOG_DEFAULT_LEVEL;
ulong mrn_log_level = (ulong) mrn_log_level_default;
char *mrn_default_parser;
static char *mrn_libgroonga_version = (char *) grn_get_version();
-static char *mrn_version = MRN_VERSION;
+static char *mrn_version = (char *) MRN_VERSION;
static void mrn_logger_func(int level, const char *time, const char *title,
const char *msg, const char *location,