Skip to content

Commit

Permalink
[mi_json] remove double inverted commas for internal error messages
Browse files Browse the repository at this point in the history
(cherry picked from commit b5a51a9)
  • Loading branch information
ionutrazvanionita committed May 18, 2016
1 parent 07dbc08 commit 841343b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/mi_json/mi_json.c
Expand Up @@ -49,9 +49,9 @@ str http_root = str_init("json");
httpd_api_t httpd_api;


static const str MI_HTTP_U_ERROR = str_init("\"Internal server error\"");
static const str MI_HTTP_U_METHOD = str_init("\"Unexpected method\"");
static const str MI_HTTP_U_NOT_FOUND = str_init("\"Command not found\"");
static const str MI_HTTP_U_ERROR = str_init("Internal server error");
static const str MI_HTTP_U_METHOD = str_init("Unexpected method");
static const str MI_HTTP_U_NOT_FOUND = str_init("Command not found");


char err_buf[MI_ERROR_BUF_MAX_LEN];
Expand Down

0 comments on commit 841343b

Please sign in to comment.