From patchwork Fri Jan 3 21:50:39 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Giulio Benetti X-Patchwork-Id: 11317491 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id D2CF217F0 for ; Fri, 3 Jan 2020 21:57:54 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id B226E222C3 for ; Fri, 3 Jan 2020 21:57:54 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=aruba.it header.i=@aruba.it header.b="VATCRjFY" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728687AbgACV5x (ORCPT ); Fri, 3 Jan 2020 16:57:53 -0500 Received: from smtpcmd0997.aruba.it ([62.149.156.97]:57371 "EHLO smtpcmd0997.aruba.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728716AbgACV5x (ORCPT ); Fri, 3 Jan 2020 16:57:53 -0500 Received: from ubuntu.localdomain ([89.164.7.165]) by smtpcmd09.ad.aruba.it with bizsmtp id lxqg2101g3ZeEr501xqnee; Fri, 03 Jan 2020 22:50:48 +0100 From: Giulio Benetti To: linux-nfs@vger.kernel.org Cc: Giulio Benetti Subject: [nfs-utils PATCH 7/7] rpcgen: rpc_hout: fix indentation on f_print() argument separator Date: Fri, 3 Jan 2020 22:50:39 +0100 Message-Id: <20200103215039.27471-8-giulio.benetti@benettiengineering.com> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20200103215039.27471-1-giulio.benetti@benettiengineering.com> References: <20200103215039.27471-1-giulio.benetti@benettiengineering.com> MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aruba.it; s=a1; t=1578088248; bh=rtzQ93BPe1MzD6QNoaREvwNimkV8DY1BsJDtAB87oIs=; h=From:To:Subject:Date:MIME-Version; b=VATCRjFYmPLeVafvj8WGdPxGj23Lab+w3JdSrLmNsC4Pk+0N7ZQB8lePMNCi3Weg0 IlrC25r4BUHBMj73uCGHtSEu+M2cHAucf/wRbewZF6NHJhRYYKmpy8lWdI0lkoh03r bKqGxkaAn73jLgFlJNNO431CMRkxth/5A8Zzbr+MFPm9pG91nKwFieSSrgEiCD15OD B3xTPZDZmwzEClxYTTMVtg8r/kqdMOJY9bLw0xrFNLoeHxZwNObqYJscvSjCi03EwE wnPuQyP7b0JhH/BgQgIIMDLZ0SPvRfBOpeF4oDQ7NI17WgeAJrqnoJaPpxY3mh7OeU HzlEBtmSErcPQ== Sender: linux-nfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-nfs@vger.kernel.org Remove useless space before closing parenthesys. Signed-off-by: Giulio Benetti --- tools/rpcgen/rpc_hout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/rpcgen/rpc_hout.c b/tools/rpcgen/rpc_hout.c index 999c061f..ed668778 100644 --- a/tools/rpcgen/rpc_hout.c +++ b/tools/rpcgen/rpc_hout.c @@ -468,7 +468,7 @@ pdeclaration(char *name, declaration *dec, int tab, char *separator) } } #pragma GCC diagnostic ignored "-Wformat-security" - f_print(fout, separator ); + f_print(fout, separator); #pragma GCC diagnostic warning "-Wformat-security" }