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 C799A7030D; Wed, 24 Feb 2021 18:37:32 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org C799A7030D DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tarantool.org; s=dev; t=1614181052; bh=CbEf/xsvK/Ncz8OH6h4b3UW0R9FqAZMlxYRnq5U8rvI=; h=To:Date:In-Reply-To:References:Subject:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To:Cc: From; b=sRSNLV07qGWheD+o0ywGwGmbe/htKKi7ESbdLKVJK6pGpicoJW4fokIYVeYg3V041 dzatZ6O3FjXMu2+W6ChbOHX1VnTseKsx2wAloW4zfVMI5OJrh7bri9Wugf1deCvVCX 3a4PU9+eKiiCNx2tIc1cKdgg2gcEO9Rt69agQer4= Received: from mail-lj1-f179.google.com (mail-lj1-f179.google.com [209.85.208.179]) (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 894687030D for ; Wed, 24 Feb 2021 18:36:54 +0300 (MSK) DKIM-Filter: OpenDKIM Filter v2.11.0 dev.tarantool.org 894687030D Received: by mail-lj1-f179.google.com with SMTP id g1so2835213ljj.13 for ; Wed, 24 Feb 2021 07:36:54 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=QhRYT9tM1ldI2G9lcunKdaalFufiHffgG3QGcnvqPag=; b=Cx/JEG+riIN+FPkhZQLgkgMHxlI4Ks9BN9l1oO28XZChQIN1bBQd45Wj4ro42965lu v48xjdQRiXrGVQFJG1M5S7UxEFr520NBnR2r7XEW77gavGgz07z0/nmnNZNoePLdtS0j SxBtwOAjditV6OJ0jcEhquE0jrp7zL350WZXZUJCFJM4xCHtvjJnm29Yu/XCtHJd15gr I0CVkyeaiqR3qokSdPAhX/bUvjDsV59lw9JFhK9WDedeEdLnvmEs3Nfs+bDaShHKSD46 jFuFhF8tfvNIPeB1IMq0K2NYR/jczM3CZyPruxpxsjzYBI2V0s36ENYMekTqTD1Xj5j4 HfZQ== X-Gm-Message-State: AOAM53132Gknn7GCTNzUTwO+I67pvEr7tDfQfiSeJVBJpY/k9BSB61+V L6q5gjVZz1pvr/f4OlPrE4Sjg+P1nn02BA== X-Google-Smtp-Source: ABdhPJwJMusi8nRQVTSYRcseHVB6Qt3qf3/JEFMIZjtJkmVtfnoP8tSaxaDumbvbM59Ebyk6OI2zDA== X-Received: by 2002:a2e:589:: with SMTP id 131mr20461607ljf.336.1614181013527; Wed, 24 Feb 2021 07:36:53 -0800 (PST) Received: from grain.localdomain ([5.18.171.94]) by smtp.gmail.com with ESMTPSA id b8sm549667lfo.84.2021.02.24.07.36.52 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 24 Feb 2021 07:36:52 -0800 (PST) Received: by grain.localdomain (Postfix, from userid 1000) id CD49B560160; Wed, 24 Feb 2021 18:36:28 +0300 (MSK) To: tml Date: Wed, 24 Feb 2021 18:36:18 +0300 Message-Id: <20210224153626.121506-3-gorcunov@gmail.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210224153626.121506-1-gorcunov@gmail.com> References: <20210222182030.76232-1-gorcunov@gmail.com> <20210224153626.121506-1-gorcunov@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [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 Cc: Vladislav Shpilevoy Errors-To: tarantool-patches-bounces@dev.tarantool.org Sender: "Tarantool-patches" Drop redundant "%s" from format. Part-of #5846 Signed-off-by: Cyrill Gorcunov --- src/lib/core/popen.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/core/popen.c b/src/lib/core/popen.c index 3b5fd1062..99a3d3cbd 100644 --- a/src/lib/core/popen.c +++ b/src/lib/core/popen.c @@ -240,7 +240,7 @@ handle_new(struct popen_opts *opts) static inline void handle_free(struct popen_handle *handle) { - say_debug("popen: handle %p free %p", handle); + say_debug("popen: handle free %p", handle); free(handle); } @@ -533,7 +533,7 @@ popen_shutdown(struct popen_handle *handle, unsigned int flags) if (handle->ios[idx].fd < 0) continue; - say_debug("popen: %d: shutdown idx [%s:%d] fd %s", + say_debug("popen: %d: shutdown idx [%s:%zd] fd %d", handle->pid, stdX_str(idx), idx, handle->ios[idx].fd); coio_close_io(loop(), &handle->ios[idx]); -- 2.29.2