From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-il1-f197.google.com (mail-il1-f197.google.com [209.85.166.197]) by mx.groups.io with SMTP id smtpd.web11.8085.1607527130270159509 for ; Wed, 09 Dec 2020 07:18:50 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: nuviainc.com, ip: 209.85.166.197, mailfrom: rebecca@nuviainc.com) Received: by mail-il1-f197.google.com with SMTP id p6so1573369ils.10 for ; Wed, 09 Dec 2020 07:18:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=Fa0ANqIxyb7PAN7BND2wIJjD/3aaxbm42ascZeMtizo=; b=nYP6WlEBlSD+CDMWwD4ZFLAIqYHlMLsIXAdfsNucextiKOsglTdR3qKIeeHD21gtH+ Xs3bgJM4o6nFnAHZyj69sYrfIE6yLZUi0e0Yo0dW9MbKr+Yeezeej+NKwpdBy5Hwg7qg drxFkoeMYtNk42wStJ8k3/Tue6QnhxBw1w5LsQStaECW5FqN2RKBT1zz3pYUP7oN+mdR AZv9UH8ftRJe+z9SQQFPmjQ5RZgSrh2iobW/Q9Og4iirBg09fwbvohMdAQOAsLp9ry/O dDqMRvUk2ZCfCz0rNPA/LBMy+IahI8HxykFfSIon+46lEZZobKyNPHMzJYVDVOmwzmak Ey0A== X-Gm-Message-State: AOAM5316i2JOMsH+OOo76jIXRsk+i0CGN6EPyVDguco0GJy1GwRSj5sm Yh3KupOA8XAEUT+NrbYjCLRruHKBf3ty0A3G8DQ2S+Hdxt6BI+E1bO30BizGtBg7n6hr2sjlOrd aVJGCaGq1wb/Njyv/neL2Oo4qOYudby3Z41EehZ6jE1mI+44tRjF0GcjyQhSsZ1CfGM/nKSbkDn d9j/BD2OGTof6W X-Google-Smtp-Source: ABdhPJypXWoxr5Edy2IXXxZOfcPu+I+0tpnF54htinvbxIuaNoa4X/v71dVvl1VLJXv0I3DyEr6pdsxi3QkftCzNo9o3ySQssiOArg== X-Received: by 2002:a5d:9b8f:: with SMTP id r15mr3535905iom.35.1607527129622; Wed, 09 Dec 2020 07:18:49 -0800 (PST) Return-Path: Received: from cube.nuviainc.com (c-174-52-16-57.hsd1.ut.comcast.net. [174.52.16.57]) by smtp.gmail.com with ESMTPSA id x12sm2974007pfj.25.2020.12.09.07.16.32 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 09 Dec 2020 07:16:32 -0800 (PST) From: "Rebecca Cran" To: devel@edk2.groups.io Cc: Rebecca Cran , Michael D Kinney , Leif Lindholm , Laszlo Ersek , Andrew Fish Subject: [edk2-CCodingStandardsSpecification PATCH 1/1] Function example in Chapter 5 C Programming has extraneous semicolon Date: Wed, 9 Dec 2020 08:16:26 -0700 Message-Id: <20201209151626.9223-1-rebecca@nuviainc.com> X-Mailer: git-send-email 2.26.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit https://github.com/tianocore-docs/edk2-CCodingStandardsSpecification/issues/1 "Section 5.7.1.10, there is a semicolon after the function paramters. Probably a copy-paste error from the header file." Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Rebecca Cran --- 5_source_files/57_c_programming.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5_source_files/57_c_programming.md b/5_source_files/57_c_programming.md index 8b9db584eea7..8b4111bfac29 100644 --- a/5_source_files/57_c_programming.md +++ b/5_source_files/57_c_programming.md @@ -102,7 +102,7 @@ FooName ( IN UINTN Arg2, OPTIONAL OUT UINTN *Arg3, IN OUT UINTN *Arg4 - ); + ) { UINTN Local; ... -- 2.26.2