summaryrefslogtreecommitdiff
path: root/sql/sql_profile.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_profile.h')
-rw-r--r--sql/sql_profile.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/sql_profile.h b/sql/sql_profile.h
index 944856a9f80..0b387f2a7cb 100644
--- a/sql/sql_profile.h
+++ b/sql/sql_profile.h
@@ -20,21 +20,21 @@
# if __GNUC__ >= 2
# define __func__ __FUNCTION__
# else
-# define __func__ _db_func_
-extern const char *_db_func_;
+# define __func__ _unknown_func_
+extern const char * const _unknown_func_;
# endif
#elif defined(_MSC_VER)
# if _MSC_VER < 1300
-# define __func__ _db_func_
-extern const char *_db_func_;
+# define __func__ _unknown_func_
+extern const char * const _unknown_func_;
# else
# define __func__ __FUNCTION__
# endif
#elif defined(__BORLANDC__)
# define __func__ __FUNC__
#else
-# define __func__ _db_func_
-extern const char *_db_func_;
+# define __func__ _unknown_func_
+extern const char * const _unknown_func_;
#endif
extern ST_FIELD_INFO query_profile_statistics_info[];