summaryrefslogtreecommitdiff
path: root/include/m_string.h
diff options
context:
space:
mode:
authorunknown <anozdrin@mysql.com>2006-06-19 15:17:15 +0400
committerunknown <anozdrin@mysql.com>2006-06-19 15:17:15 +0400
commit7640f5122142125b9ce93c3c85b43224a1fb5ec0 (patch)
tree9cbc88945cab0e9beeddd6f34710666a40ab6c41 /include/m_string.h
parent5754a76bbfdf6386217747153832e4a64723e074 (diff)
downloadmariadb-git-7640f5122142125b9ce93c3c85b43224a1fb5ec0.tar.gz
Polishing: C_STRING_WITH_SIZE() was renamed to C_STRING_WITH_LEN().
Diffstat (limited to 'include/m_string.h')
-rw-r--r--include/m_string.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/m_string.h b/include/m_string.h
index 9f7ec220f2c..e009447c192 100644
--- a/include/m_string.h
+++ b/include/m_string.h
@@ -256,6 +256,6 @@ typedef struct
} LEX_STRING;
#define STRING_WITH_LEN(X) (X), ((uint) (sizeof(X) - 1))
-#define C_STRING_WITH_SIZE(X) ((char *) (X)), ((uint) (sizeof(X) - 1))
+#define C_STRING_WITH_LEN(X) ((char *) (X)), ((uint) (sizeof(X) - 1))
#endif