From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42CBDC433EF for ; Thu, 28 Oct 2021 21:17:10 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2879B6023E for ; Thu, 28 Oct 2021 21:17:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231235AbhJ1VTg (ORCPT ); Thu, 28 Oct 2021 17:19:36 -0400 Received: from pb-smtp20.pobox.com ([173.228.157.52]:62738 "EHLO pb-smtp20.pobox.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230404AbhJ1VTf (ORCPT ); Thu, 28 Oct 2021 17:19:35 -0400 Received: from pb-smtp20.pobox.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id E0EE31635DA; Thu, 28 Oct 2021 17:17:07 -0400 (EDT) (envelope-from junio@pobox.com) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=pobox.com; h=from:to:cc :subject:references:date:in-reply-to:message-id:mime-version :content-type; s=sasl; bh=Xyf1wsWnC3InP9Jq3zAhaUXu8dXxbLaZdUm1te H7PMw=; b=PWqs64k3VBATJwSC6YRAafVr6cOxIG5NLGl3b5AWjA7baWImlhCehO QVN7TzV/dcKTiKPFeuSFKJxju3fI0pVxdUj5dRkqcAx5PDxRqxTTe8VvtWk0hdnG v9m9qDRjoQaJ9pUrh12aSUojmAAg+jsPuoXZxWzasXe0XNMFrOAV8= Received: from pb-smtp20.sea.icgroup.com (unknown [127.0.0.1]) by pb-smtp20.pobox.com (Postfix) with ESMTP id D8B701635D9; Thu, 28 Oct 2021 17:17:07 -0400 (EDT) (envelope-from junio@pobox.com) Received: from pobox.com (unknown [104.133.2.91]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pb-smtp20.pobox.com (Postfix) with ESMTPSA id 3ABF51635D7; Thu, 28 Oct 2021 17:17:05 -0400 (EDT) (envelope-from junio@pobox.com) From: Junio C Hamano To: Sergey Organov Cc: git@vger.kernel.org Subject: Re: [PATCH] stash: get rid of unused argument in stash_staged() References: <875yugcs3l.fsf@osv.gnss.ru> <87lf2zz59w.fsf@osv.gnss.ru> <87fst2gwia.fsf_-_@osv.gnss.ru> <87pms2mi1p.fsf_-_@osv.gnss.ru> <87wnlya40k.fsf_-_@osv.gnss.ru> <87k0hx5z81.fsf_-_@osv.gnss.ru> Date: Thu, 28 Oct 2021 14:17:04 -0700 In-Reply-To: <87k0hx5z81.fsf_-_@osv.gnss.ru> (Sergey Organov's message of "Thu, 28 Oct 2021 11:29:34 +0300") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Pobox-Relay-ID: 669B89A6-3834-11EC-8629-F327CE9DA9D6-77302942!pb-smtp20.pobox.com Precedence: bulk List-ID: X-Mailing-List: git@vger.kernel.org Sergey Organov writes: > Unused 'ps' argument was a left-over from original copy-paste of > stash_patch(). Removed. > > Signed-off-by: Sergey Organov > --- Thanks. Will queue.