From patchwork Thu Sep 2 23:00:11 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin King X-Patchwork-Id: 506961 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-18.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER, INCLUDES_PATCH, MAILING_LIST_MULTI, SPF_HELO_NONE, SPF_PASS, USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 5620CC433EF for ; Thu, 2 Sep 2021 23:00:17 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3B163610FF for ; Thu, 2 Sep 2021 23:00:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1347981AbhIBXBN (ORCPT ); Thu, 2 Sep 2021 19:01:13 -0400 Received: from smtp-relay-canonical-1.canonical.com ([185.125.188.121]:34162 "EHLO smtp-relay-canonical-1.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232013AbhIBXBL (ORCPT ); Thu, 2 Sep 2021 19:01:11 -0400 Received: from localhost (1.general.cking.uk.vpn [10.172.193.212]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by smtp-relay-canonical-1.canonical.com (Postfix) with ESMTPSA id C12D03F355; Thu, 2 Sep 2021 23:00:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=canonical.com; s=20210705; t=1630623611; bh=zxH+g8t4PZrVfiI57swIAzkUwA2FmWiTdfMr+NnQJMA=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version:Content-Type; b=B80WzTLnZUHU54B0/LAdvPgTRMM17lpanljV2PalqiZcLX3kvNYmQz9LM45ZT/cpP nBHJybLbbtLsbPtUpKzLOK9+FXvHcojxLRqUk9/1MALKekXeGsjgZTrWFTb8PfU/4j w90jfBfu7hzqT6nw0pt67Qp3KyPt8Y0ILh1NDqsb0msr1NHXCs3zDETgE4825N5h8h pw8Ofjf572el9rCvtXkIOndN6ZqR/apG1eL66RgpvPGP1Nlz+FizlTJ2KwE2Z7iRsa zRmKGd87d2THrlonp9uo+voBbP+nyamGxtXk1zNiP4PYWdTrx9WWHxeaZ27TUzG5It 8jr4b3eiQwEfA== From: Colin King To: Jon Maloy , Ying Xue , "David S . Miller" , Jakub Kicinski , netdev@vger.kernel.org, tipc-discussion@lists.sourceforge.net Cc: kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] tipc: clean up inconsistent indenting Date: Fri, 3 Sep 2021 00:00:11 +0100 Message-Id: <20210902230011.58478-1-colin.king@canonical.com> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org From: Colin Ian King There is a statement that is indented one character too deeply, clean this up. Signed-off-by: Colin Ian King --- net/tipc/socket.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index e3105ba407c7..a0a27d87f631 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1426,7 +1426,7 @@ static int __tipc_sendmsg(struct socket *sock, struct msghdr *m, size_t dlen) if (ua) { if (!tipc_uaddr_valid(ua, m->msg_namelen)) return -EINVAL; - atype = ua->addrtype; + atype = ua->addrtype; } /* If socket belongs to a communication group follow other paths */