From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from localhost (localhost [127.0.0.1]) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTP id DABF325CB1 for ; Thu, 1 Aug 2019 16:01:31 -0400 (EDT) Received: from turing.freelists.org ([127.0.0.1]) by localhost (turing.freelists.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GLvZi5nP8UsC for ; Thu, 1 Aug 2019 16:01:31 -0400 (EDT) Received: from smtp32.i.mail.ru (smtp32.i.mail.ru [94.100.177.92]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by turing.freelists.org (Avenir Technologies Mail Multiplex) with ESMTPS id 0DF1725CAF for ; Thu, 1 Aug 2019 16:01:30 -0400 (EDT) Subject: [tarantool-patches] Re: [PATCH v2 1/2] lua: new function luaT_return_error() References: <2d0ba195-f5cb-bd23-6340-1426b506c82f@tarantool.org> <20190731221639.GA16655@tarantool.org> From: Vladislav Shpilevoy Message-ID: Date: Thu, 1 Aug 2019 22:03:42 +0200 MIME-Version: 1.0 In-Reply-To: <20190731221639.GA16655@tarantool.org> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: tarantool-patches-bounce@freelists.org Errors-to: tarantool-patches-bounce@freelists.org Reply-To: tarantool-patches@freelists.org List-Help: List-Unsubscribe: List-software: Ecartis version 1.0.0 List-Id: tarantool-patches List-Subscribe: List-Owner: List-post: List-Archive: To: tarantool-patches@freelists.org, Mergen Imeev , Kirill Yukhin Hi! Thanks for the fixes! I've force pushed this: =========================================================================== diff --git a/src/lua/fio.c b/src/lua/fio.c index e5d3458fd..7437cc0c6 100644 --- a/src/lua/fio.c +++ b/src/lua/fio.c @@ -49,7 +49,7 @@ #define lbox_fio_pushsyserror(L) ({ \ diag_set(SystemError, "fio: %s", strerror(errno)); \ - luaT_push_nil_and_error(L); \ + luaT_push_nil_and_error(L); \ }) static int =========================================================================== Now the patchset LGTM. Kirill, please, push.