diff options
author | unknown <konstantin@mysql.com> | 2005-05-13 19:15:03 +0400 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-05-13 19:15:03 +0400 |
commit | 6f4c2486439dfcbaab7e1686860385282562d442 (patch) | |
tree | cf2ed97dffdc8a9c6fb99520ce04cbb6ec412962 /libmysql/errmsg.c | |
parent | 7a42c5fd41fe84497ea345c036747f95a2b4d1cb (diff) | |
download | mariadb-git-6f4c2486439dfcbaab7e1686860385282562d442.tar.gz |
Add missing commas to errmsg.c
libmysql/errmsg.c:
Add missing commas
Diffstat (limited to 'libmysql/errmsg.c')
-rw-r--r-- | libmysql/errmsg.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmysql/errmsg.c b/libmysql/errmsg.c index 48e44327d0f..5d183b478ef 100644 --- a/libmysql/errmsg.c +++ b/libmysql/errmsg.c @@ -80,7 +80,7 @@ const char *client_errors[]= "Row retrieval was canceled by mysql_stmt_close() call", "Attempt to read column without prior row fetch", "Prepared statement contains no metadata", - "Attempt to read a row while there is no result set associated with the statement" + "Attempt to read a row while there is no result set associated with the statement", "" }; @@ -142,7 +142,7 @@ const char *client_errors[]= "Row retrieval was canceled by mysql_stmt_close() call", "Attempt to read column without prior row fetch", "Prepared statement contains no metadata", - "Attempt to read a row while there is no result set associated with the statement" + "Attempt to read a row while there is no result set associated with the statement", "" }; @@ -202,7 +202,7 @@ const char *client_errors[]= "Row retrieval was canceled by mysql_stmt_close() call", "Attempt to read column without prior row fetch", "Prepared statement contains no metadata", - "Attempt to read a row while there is no result set associated with the statement" + "Attempt to read a row while there is no result set associated with the statement", "" }; #endif |