diff options
author | konstantin@mysql.com <> | 2005-05-13 19:15:03 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2005-05-13 19:15:03 +0400 |
commit | 9c6ba43eb129b79b10939bf3da9bc4c38429c46d (patch) | |
tree | cf2ed97dffdc8a9c6fb99520ce04cbb6ec412962 /libmysql/errmsg.c | |
parent | e5c916f7e88b8927dbe2f994f94a08d90fa615d2 (diff) | |
download | mariadb-git-9c6ba43eb129b79b10939bf3da9bc4c38429c46d.tar.gz |
Add missing commas to errmsg.c
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 |