Skip to content
Snippets Groups Projects
Commit 1b452718 authored by Konstantin Osipov's avatar Konstantin Osipov
Browse files

Remove unnecessary quotes from errcode.c.

There were extra quotes in errcode.c, i.e.
quotes were part of the error message.
Remove them.
parent 3ea86725
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
#define ERRCODE_RECORD_MEMBER(s, f, d) { \
.errstr = #s, \
.errflags = f, \
.errdesc = #d \
.errdesc = d \
},
struct errcode_record tnt_error_codes[tnt_error_codes_enum_MAX] = {
......
......@@ -89,8 +89,8 @@ struct errcode_record {
/*
* !IMPORTANT! Please see an instruction how to add !IMPORTANT!
* !IMPORTANT! new errors at start of the file !IMPORTANT!
* !IMPORTANT! Please follow instructions at start of the file
* when adding new errors.
*/
ENUM0(tnt_error_codes_enum, ERROR_CODES);
......
return_code: 0
return_code: ERR_CODE_ILLEGAL_PARAMS, "Illegal parameters"
return_code: ERR_CODE_NO_SUCH_INDEX, "No index with the given id is defined"
return_code: ERR_CODE_ILLEGAL_PARAMS, Illegal parameters
return_code: ERR_CODE_NO_SUCH_INDEX, No index with the given id is defined
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment