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 X-Spam-Level: X-Spam-Status: No, score=-16.6 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 132DDC433F5 for ; Fri, 24 Sep 2021 09:21:56 +0000 (UTC) Received: from picard.linux.it (picard.linux.it [213.254.12.146]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 401C060F44 for ; Fri, 24 Sep 2021 09:21:55 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 401C060F44 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=lists.linux.it Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.linux.it Received: from picard.linux.it (localhost [IPv6:::1]) by picard.linux.it (Postfix) with ESMTP id 67E053C8F2B for ; Fri, 24 Sep 2021 11:21:53 +0200 (CEST) Received: from in-2.smtp.seeweb.it (in-2.smtp.seeweb.it [217.194.8.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by picard.linux.it (Postfix) with ESMTPS id 281E73C8F12 for ; Fri, 24 Sep 2021 11:21:35 +0200 (CEST) Received: from smtp-out2.suse.de (smtp-out2.suse.de [195.135.220.29]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by in-2.smtp.seeweb.it (Postfix) with ESMTPS id ADC946021DF for ; Fri, 24 Sep 2021 11:21:34 +0200 (CEST) Received: from relay1.suse.de (relay1.suse.de [149.44.160.133]) by smtp-out2.suse.de (Postfix) with ESMTP id 1A2F31FFE0; Fri, 24 Sep 2021 09:21:34 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.com; s=susede1; t=1632475294; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=0+kB/U2pu0yi3CNItwUp55Zn2jBeKdgiLdo/q34mzWc=; b=TsDSyMQxAYleu+1xRJ2exc5n7gJ/uXE/4N6HtMNCiHRpzkHOaxF2Hdt2SCRgRqJIX75ISB OHzYUacrKHx124GFFbBqWMRJd8JxwRCYql8e1nfGSRwIKuhW5V8guZ3cIxfJQmmqxtgI54 8drORwxpUBNlXTOCcoM7X7JXkLpNUY4= Received: from g78.suse.de (unknown [10.163.24.38]) by relay1.suse.de (Postfix) with ESMTP id D2FA425D40; Fri, 24 Sep 2021 09:21:33 +0000 (UTC) To: ltp@lists.linux.it Date: Fri, 24 Sep 2021 10:21:11 +0100 Message-Id: <20210924092111.20012-2-rpalethorpe@suse.com> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210924092111.20012-1-rpalethorpe@suse.com> References: <20210924092111.20012-1-rpalethorpe@suse.com> MIME-Version: 1.0 X-Virus-Scanned: clamav-milter 0.102.4 at in-2.smtp.seeweb.it X-Virus-Status: Clean Subject: [LTP] [PATCH 2/2] msgrcv07: Cleanup indentation X-BeenThere: ltp@lists.linux.it X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux Test Project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Richard Palethorpe via ltp Reply-To: Richard Palethorpe Cc: Richard Palethorpe Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: ltp-bounces+ltp=archiver.kernel.org@lists.linux.it Sender: "ltp" make make check happy. Signed-off-by: Richard Palethorpe --- testcases/kernel/syscalls/ipc/msgrcv/msgrcv07.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testcases/kernel/syscalls/ipc/msgrcv/msgrcv07.c b/testcases/kernel/syscalls/ipc/msgrcv/msgrcv07.c index 8635ef7a4..4528f69b2 100644 --- a/testcases/kernel/syscalls/ipc/msgrcv/msgrcv07.c +++ b/testcases/kernel/syscalls/ipc/msgrcv/msgrcv07.c @@ -201,7 +201,7 @@ static void test_positive_msgtyp(void) if (strcmp(rcv_buf.mtext, MSG2) == 0 && rcv_buf.type == MSGTYPE2) { tst_res(TPASS, - "msgtyp got the first message in the queue of type msgtyp"); + "msgtyp got the first message in the queue of type msgtyp"); } else { tst_res(TFAIL, "msgtyp didn't get the first message in the queue of type msgtyp"); @@ -226,7 +226,7 @@ static void test_negative_msgtyp(void) if (strcmp(rcv_buf.mtext, MSG1) == 0 && rcv_buf.type == MSGTYPE1) { tst_res(TPASS, - "-msgtyp got the first message in the queue with the lowest type"); + "-msgtyp got the first message in the queue with the lowest type"); } else { tst_res(TFAIL, "-msgtyp didn't get the first message in the queue with the lowest type"); -- 2.31.1 -- Mailing list info: https://lists.linux.it/listinfo/ltp