From patchwork Wed Jan 23 14:24:45 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 351 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 3140F60C7D for ; Wed, 23 Jan 2019 15:24:50 +0100 (CET) Received: from localhost.localdomain (cpc89242-aztw30-2-0-cust488.18-1.cable.virginm.net [86.31.129.233]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 8E53723D; Wed, 23 Jan 2019 15:24:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1548253489; bh=xYokDh5VRxlBFiIfu77BtzocIpsqlWazIhWGihHfSMU=; h=From:To:Cc:Subject:Date:From; b=ZHiYOUc6xRr2g7RihgPtroJGPi+isRefY5+Owl2pJ6IOx5rxK6a/SYFZ+DM9/kq82 JcMRJWO7zobgfEK0PM2UAje0UNNFf021IEu5t6KyNWTakEaLQ69Q6ZfiTHmxUNGyCX Vd5U3QI4cB5E9TjVeOK4UoUreiT+hiV2/bygGAdQ= From: Kieran Bingham To: LibCamera Devel Date: Wed, 23 Jan 2019 14:24:45 +0000 Message-Id: <20190123142445.29416-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: log: Fix two typos. X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Jan 2019 14:24:50 -0000 Two incorrect spellings are fixed. 'logr' -> 'log' 'environement' -> 'environment' Fixes: 747ace042cc1 ("libcamera: log: Get log levels from the environment") Signed-off-by: Kieran Bingham Reviewed-by: Niklas Söderlund Reviewed-by: Laurent Pinchart --- src/libcamera/log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/log.cpp b/src/libcamera/log.cpp index 241dc5395976..dc88414c338a 100644 --- a/src/libcamera/log.cpp +++ b/src/libcamera/log.cpp @@ -134,7 +134,7 @@ void Logger::parseLogFile() /** * \brief Parse the log levels from the environment * - * The logr levels are stored in LIBCAMERA_LOG_LEVELS environement variable as a list + * The log levels are stored in LIBCAMERA_LOG_LEVELS environment variable as a list * of "category=level" pairs, separated by commas (','). Parse the variable and * store the levels to configure all log categories. */