From patchwork Wed Jun 1 13:38:35 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: gerrit-no-reply@lists.osmocom.org X-Patchwork-Id: 628675 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by ozlabs.org (Postfix) with ESMTP id 3rKWf65Sfpz9t3s for ; Wed, 1 Jun 2016 23:38:38 +1000 (AEST) Received: from lists.osmocom.org (lists.osmocom.org [144.76.43.76]) by lists.osmocom.org (Postfix) with ESMTP id 951BB22627; Wed, 1 Jun 2016 13:38:36 +0000 (UTC) X-Original-To: openbsc@lists.osmocom.org Delivered-To: openbsc@lists.osmocom.org Received: from 127.0.1.12 (unknown [127.0.1.12]) by lists.osmocom.org (Postfix) with ESMTPA id 861A32261F; Wed, 1 Jun 2016 13:38:35 +0000 (UTC) Date: Wed, 1 Jun 2016 13:38:35 +0000 From: Harald Welte To: lynxis lazus , Harald Welte X-Gerrit-MessageType: merged Subject: [MERGED] osmo-pcu[master]: decoding: remove superfluous double-semicolon X-Gerrit-Change-Id: I48ec24f2e10620279cbcbf39c70a4be6438f6b0f X-Gerrit-ChangeURL: X-Gerrit-Commit: d302e4fb282f88f5246a5e80a8335b6f7f698b7d In-Reply-To: References: MIME-Version: 1.0 Content-Disposition: inline User-Agent: Gerrit/2.12.2-31-gb331dbd-dirty X-BeenThere: openbsc@lists.osmocom.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Development of OpenBSC, OsmoBSC, OsmoNITB, OsmoCSCN" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: laforge@gnumonks.org Errors-To: openbsc-bounces@lists.osmocom.org Sender: "OpenBSC" Message-Id: <20160601133836.951BB22627@lists.osmocom.org> Harald Welte has submitted this change and it was merged. Change subject: decoding: remove superfluous double-semicolon ...................................................................... decoding: remove superfluous double-semicolon Change-Id: I48ec24f2e10620279cbcbf39c70a4be6438f6b0f Reviewed-on: https://gerrit.osmocom.org/140 Reviewed-by: Harald Welte Tested-by: Jenkins Builder --- M src/decoding.cpp 1 file changed, 1 insertion(+), 1 deletion(-) Approvals: Harald Welte: Looks good to me, approved Jenkins Builder: Verified diff --git a/src/decoding.cpp b/src/decoding.cpp index 5f64ac0..2600879 100644 --- a/src/decoding.cpp +++ b/src/decoding.cpp @@ -267,7 +267,7 @@ * so drop it (this may happen with EGPRS since * there is no M flag. */ num_chunks -= 1; - break;; + break; } chunks[i].length = data_len - offs; }