From 31fd131a320e42e1567e98a60ddfc466fe501463 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk <roman@tsisyk.com> Date: Fri, 22 Jan 2016 16:42:35 +0300 Subject: [PATCH] Fix errcode.h numbering caused by a bad merge --- src/box/errcode.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/box/errcode.h b/src/box/errcode.h index 3b2fe4f8e7..ada9e9e6b9 100644 --- a/src/box/errcode.h +++ b/src/box/errcode.h @@ -164,9 +164,9 @@ struct errcode_record { /*108 */_(ER_WRONG_INDEX_OPTIONS, 2, "Wrong index options (field %u): %s") \ /*109 */_(ER_WRONG_SCHEMA_VERSION, 2, "Wrong schema version, current: %d, in request: %u") \ /*110 */_(ER_SLAB_ALLOC_MAX, 2, "Failed to allocate %u bytes for tuple in the slab allocator: tuple is too large. Check 'slab_alloc_maximal' configuration option.") \ - /*112 */_(ER_WRONG_SPACE_OPTIONS, 2, "Wrong space options (field %u): %s") \ - /*113 */_(ER_UNSUPPORTED_INDEX_FEATURE, 2, "Index '%s' (%s) of space '%s' (%s) does not support %s") \ - /*114 */_(ER_VIEW_IS_RO, 2, "View '%s' is read-only") \ + /*111 */_(ER_WRONG_SPACE_OPTIONS, 2, "Wrong space options (field %u): %s") \ + /*112 */_(ER_UNSUPPORTED_INDEX_FEATURE, 2, "Index '%s' (%s) of space '%s' (%s) does not support %s") \ + /*113 */_(ER_VIEW_IS_RO, 2, "View '%s' is read-only") \ /* -- GitLab