From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from [87.239.111.99] (localhost [127.0.0.1]) by dev.tarantool.org (Postfix) with ESMTP id 52C097030F; Thu, 25 Feb 2021 10:28:02 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 52C097030F DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1614238082; bh=JjwIEaNy0axYBv3l6zxhh6gp2Og/ubCd/gp9pKmp7e8=; h=Date:To:Cc:References:In-Reply-To:Subject:List-Id: List-Unsubscribe:List-Archive:List-Post:List-Help:List-Subscribe: From:Reply-To:From; b=pDWzIFEUQ4wZzuaf19J4CoHOGUceXX3hL/4l4Hfrn0rnbJtdSEA8/7fH3+0zaCqWP M2OBpKOQwR9RIkznZ6RkJXCsFqJwqgtHdHAj0MK7vLKF2WPLVfGo48/BJsRtRMb9Br VELut0d/hFmlIiZ+G6mW6MILwBjqq6TbCVCI470I= Received: from mail-lf1-f43.google.com (mail-lf1-f43.google.com [209.85.167.43]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by dev.tarantool.org (Postfix) with ESMTPS id 192F97030F for ; Thu, 25 Feb 2021 10:28:00 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 192F97030F Received: by mail-lf1-f43.google.com with SMTP id m22so7083210lfg.5 for ; Wed, 24 Feb 2021 23:28:00 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=3Or7nOCnEAC7tDOB82Du7HOuynP543MaNlCivLmyA3I=; b=Gal8WASoSZyxpo53rEpHnRRN7oxzI/M1T+57nMXGEggXMlaxZAykr085muPD9IayDv X3meKdnsXEN4n6n8PlkbW/ypcT2x2qECyCgMTD0kixgdjnkP/iqsUy9XyjwXYz0hIiq3 IGt2CY/XTjvlSZfJ4UYWQANXmgsMy4GLvzEwQGb3kkH3WqgqRRAi8dlh+CNe8ZxOj3MV cpO/tdmd2lGuYjk2WG0oF+deCnl3RQFkjHziIWuvNx6fQ6WL8G0ZcSRsWzsP7H+zXLsu 2V3ECwHl72h9GNd1yiCdhLch+vY45x9qxxCUk7pRb3Wvx80raWvCj0E5Ll2d2lKQ+juI OeVA== X-Gm-Message-State: AOAM530+MnGPCGVTEhlG4qHEvKKIe+uP7CLVy0cNNQzN55o1Pf3K7qVS TTO/DJhVj9aTdXzu9kGhmWclU74ugP0= X-Google-Smtp-Source: ABdhPJznX2EdTCxQtwc4zyO8CKgVEp3QLMBXqlP/QonessOsszFUICVkVbaEeGzs2ojMORa3ouZEww== X-Received: by 2002:a05:6512:1109:: with SMTP id l9mr1170382lfg.559.1614238078988; Wed, 24 Feb 2021 23:27:58 -0800 (PST) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id b25sm472271lff.268.2021.02.24.23.27.57 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 24 Feb 2021 23:27:57 -0800 (PST) Received: by grain.localdomain (Postfix, from userid 1000) id 2339C56009B; Thu, 25 Feb 2021 10:27:57 +0300 (MSK) Date: Thu, 25 Feb 2021 10:27:57 +0300 To: Vladislav Shpilevoy Cc: tml Message-ID: References: <20210222182030.76232-1-gorcunov@gmail.com> <20210224153626.121506-1-gorcunov@gmail.com> <20210224153626.121506-3-gorcunov@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/2.0.5 (2021-01-21) Subject: Re: [Tarantool-patches] [PATCH v2 02/10] popen: fix say_x format arguments X-BeenThere: tarantool-patches@dev.tarantool.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Tarantool development patches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Cyrill Gorcunov via Tarantool-patches Reply-To: Cyrill Gorcunov Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" On Wed, Feb 24, 2021 at 11:39:39PM +0100, Vladislav Shpilevoy wrote: > Hi! Thanks for the patch! > > On 24.02.2021 16:36, Cyrill Gorcunov wrote: > > Drop redundant "%s" from format. > > Neither of the changes below are about dropping a redundant %s. > First one drops %p, second one replaces it with %d and fixes > size_t. Sigh, sorry. This slipped in from series reordering. Thanks for catching!