From patchwork Fri May 3 15:36:32 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kieran Bingham X-Patchwork-Id: 1155 Return-Path: Received: from perceval.ideasonboard.com (perceval.ideasonboard.com [213.167.242.64]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id A7E5360003 for ; Fri, 3 May 2019 17:36:36 +0200 (CEST) Received: from Q.Home (unknown [IPv6:2a02:c7f:1887:5d00:c990:5ff4:193b:c9b8]) by perceval.ideasonboard.com (Postfix) with ESMTPSA id 1726F31E; Fri, 3 May 2019 17:36:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ideasonboard.com; s=mail; t=1556897796; bh=whSn0QCWH0X/8RapUMePdQTUKL1QsWE7phkzKx/h5fg=; h=From:To:Cc:Subject:Date:From; b=tVb3UCkPgfjjzySJukNw+J5yGDdD1oqFLfuOfaRaF0S3b3jEgxrmAV4RC5qCMz7Mx ruRKhOykOgGNKFlUhvFY4P3cAaQ5aI/syiVFVLnRD+vN5Prf6yc5fkwreQlj8MoxKt /oS2rlRgr/VMJEgJY5Nvxaee5qBRUM1VvDuDb94M= From: Kieran Bingham To: LibCamera Devel Date: Fri, 3 May 2019 16:36:32 +0100 Message-Id: <20190503153632.8836-1-kieran.bingham@ideasonboard.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Subject: [libcamera-devel] [PATCH] libcamera: v4l2_device: Fix debug spacing 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: Fri, 03 May 2019 15:36:36 -0000 Signed-off-by: Kieran Bingham Reviewed-by: Laurent Pinchart --- src/libcamera/v4l2_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcamera/v4l2_device.cpp b/src/libcamera/v4l2_device.cpp index 1bbf79673c16..e22323de19c3 100644 --- a/src/libcamera/v4l2_device.cpp +++ b/src/libcamera/v4l2_device.cpp @@ -717,7 +717,7 @@ int V4L2Device::importBuffers(BufferPool *pool) return -ENOMEM; } - LOG(V4L2, Debug) << "provided pool of " << pool->count() << "buffers"; + LOG(V4L2, Debug) << "provided pool of " << pool->count() << " buffers"; bufferPool_ = pool; return 0;