From patchwork Fri Sep 16 13:55:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Laurent Vivier X-Patchwork-Id: 670896 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sbHVv3TWcz9s36 for ; Sat, 17 Sep 2016 00:20:23 +1000 (AEST) Received: from localhost ([::1]:41097 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bku05-0005uI-1F for incoming@patchwork.ozlabs.org; Fri, 16 Sep 2016 10:20:21 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59043) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkteY-0004CL-DV for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:58:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkteS-0007mG-BL for qemu-devel@nongnu.org; Fri, 16 Sep 2016 09:58:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:47789) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkteS-0007le-5S; Fri, 16 Sep 2016 09:58:00 -0400 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 20D2E552C9; Fri, 16 Sep 2016 13:56:22 +0000 (UTC) Received: from thinkpad.redhat.com (ovpn-112-33.ams2.redhat.com [10.36.112.33]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8GDuHk3024127; Fri, 16 Sep 2016 09:56:20 -0400 From: Laurent Vivier To: qemu-trivial@nongnu.org Date: Fri, 16 Sep 2016 15:55:52 +0200 Message-Id: <1474034177-17663-2-git-send-email-lvivier@redhat.com> In-Reply-To: <1474034177-17663-1-git-send-email-lvivier@redhat.com> References: <1474034177-17663-1-git-send-email-lvivier@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 16 Sep 2016 13:56:22 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH 01/26] coccinelle: use exit(EXIT_SUCCESS) and exit(EXIT_FAILURE) X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Laurent Vivier , qemu-devel@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Signed-off-by: Laurent Vivier Reviewed-by: Eric Blake --- scripts/coccinelle/exit.cocci | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 scripts/coccinelle/exit.cocci diff --git a/scripts/coccinelle/exit.cocci b/scripts/coccinelle/exit.cocci new file mode 100644 index 0000000..73386c0 --- /dev/null +++ b/scripts/coccinelle/exit.cocci @@ -0,0 +1,12 @@ +// replace exit(0) by exit(EXIT_SUCCESS) +// exit(1) by exit(EXIT_FAILURE) + +@@ +@@ +( +- exit(0) ++ exit(EXIT_SUCCESS) +| +- exit(1) ++ exit(EXIT_FAILURE) +)