From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-178.mta1.migadu.com (out-178.mta1.migadu.com [95.215.58.178]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id E432A34750D for ; Tue, 14 Apr 2026 15:36:21 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.178 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776180984; cv=none; b=kcRilCqPeJlIOEYLDDoWTIpIwW0DQA1QV4fAMrsKFM34IHYjslaV/RjQHEhdZGTlhi5VosmSZduaFVVjKrajINgmsnAPXdGJOgvGP2ujbMa4YLj/awWzQuTZYocvNEVeGrZdCTtXlJLuh1nFvrqrlCs7Ukh5/RBT8bFnTZ6i3A8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776180984; c=relaxed/simple; bh=BBmOdud+rElIxolIgrPuX4zP74YVeDujoHz1KdjU4NU=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=Y087+gLR+42Nvf6/VlinyR+2xFHKaz5dVUNYlWO6KOgzYhQ5n25mPdhX0OclcOVxS3W9qbGBB1Ij0/aFPHClO0G1HFOtRpiUmYPsvWdd9BNviox4E5RPh8N+hwAzuJCduQFP/Vto5CJtiHPvC6tu6gR9yBl/dRusCgRGanz2pbM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=pL/1xinT; arc=none smtp.client-ip=95.215.58.178 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="pL/1xinT" Date: Tue, 14 Apr 2026 17:36:12 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1776180979; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=moy3K/PKQ7o6SEbs9US0Uk59iztW09GOE/G5m2DAqNY=; b=pL/1xinTsDNkQEJ6A1ByhIfamUbcSHbewaUqjUWQESCv8qpWWS0QEC6ufgeq7WArTOi4jU kYexkwtGKpRh/50pKjzHniLGB1CIZdrALrB93UwcgbQtnBNIxhy4MHPpur/BiHoUtPoOvG Bfj6eEbEY4IPYZ0/EwUvgj74klwoOgE= X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Thorsten Blum To: Petr Mladek Cc: Andrew Morton , Steven Rostedt , Andy Shevchenko , Rasmus Villemoes , Sergey Senozhatsky , linux-kernel@vger.kernel.org Subject: Re: [PATCH] lib/vsprintf: use bool for local decode variable Message-ID: References: <20260407181835.1053072-2-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Migadu-Flow: FLOW_OUT On Tue, Apr 14, 2026 at 04:25:21PM +0200, Petr Mladek wrote: > On Tue 2026-04-07 20:18:36, Thorsten Blum wrote: > > The local variable 'decode' is only used as a boolean value - change its > > data type from int to bool accordingly. > > > > Signed-off-by: Thorsten Blum > > JFYI, the patch has been comitted into printk/linux.git, > branch for-7.1. Thank you! > Best Regards, > Petr