From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lf1-f67.google.com (mail-lf1-f67.google.com [209.85.167.67]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 50F8A42EF5C for ; Fri, 3 Jul 2020 17:45:42 +0300 (MSK) Received: by mail-lf1-f67.google.com with SMTP id u25so18666000lfm.1 for ; Fri, 03 Jul 2020 07:45:42 -0700 (PDT) From: Cyrill Gorcunov Date: Fri, 3 Jul 2020 17:45:05 +0300 Message-Id: <20200703144526.522358-2-gorcunov@gmail.com> In-Reply-To: <20200703144526.522358-1-gorcunov@gmail.com> References: <20200703144526.522358-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Tarantool-patches] [PATCH 01/22] version: use void for empty args List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: tml Cc: Alexander Turenko Part-of #4718 Signed-off-by: Cyrill Gorcunov --- src/version.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/version.c b/src/version.c index aa3536351..7d2d038de 100644 --- a/src/version.c +++ b/src/version.c @@ -44,7 +44,7 @@ tarantool_version(void) } uint32_t -tarantool_version_id() +tarantool_version_id(void) { return version_id(PACKAGE_VERSION_MAJOR, PACKAGE_VERSION_MINOR, PACKAGE_VERSION_PATCH); -- 2.26.2