From patchwork Sat Jul 25 06:42:04 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: You-Sheng Yang X-Patchwork-Id: 8995 Return-Path: X-Original-To: parsemail@patchwork.libcamera.org Delivered-To: parsemail@patchwork.libcamera.org Received: from lancelot.ideasonboard.com (lancelot.ideasonboard.com [92.243.16.209]) by patchwork.libcamera.org (Postfix) with ESMTPS id 37610BD878 for ; Sat, 25 Jul 2020 11:37:50 +0000 (UTC) Received: from lancelot.ideasonboard.com (localhost [IPv6:::1]) by lancelot.ideasonboard.com (Postfix) with ESMTP id BA45861223; Sat, 25 Jul 2020 13:37:49 +0200 (CEST) Received: from mail-pf1-f195.google.com (mail-pf1-f195.google.com [209.85.210.195]) by lancelot.ideasonboard.com (Postfix) with ESMTPS id 4472C60399 for ; Sat, 25 Jul 2020 08:42:11 +0200 (CEST) Received: by mail-pf1-f195.google.com with SMTP id u185so6453505pfu.1 for ; Fri, 24 Jul 2020 23:42:11 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id:mime-version :content-transfer-encoding; bh=kyyJ867Iv7JSISeSHIYm4z8D1V1/FzwGMjHVlo+TzC0=; b=hqS39ASShRt78J0dFZkIlcztRn9SC7VMES6nnLZJRmGqftpp6zKueDk+syC/QaLFEn gF0SzyIKa3T/GBb1ejPwzbULE48l0ts/TiHuNYMiG86bfzybDmsXb1ZAvrZZ4nwLcFN3 ZFKEqvMu/jV61GVPbHH1Bxr8JFJ8R21MSuPpUzAxY0sqRxENtCWfpY95kw+krFmcQHgO w1CUPQFILW1Q/PrU4QePwsMCIMgvsdKstWQ/+r3DsVNy9lADvqNIgUTpHcGl8eSPDB3V A7ae1hfbwadugeWSOJAEIOY0RcgSugnFU0XjZCSO52ZO3xuM1LfQs63pbpcmKlFmjE2K yngw== X-Gm-Message-State: AOAM531H8uT2sSIpYwOELz+IpB6rDdvE7jAiQHqzRFfEKk8MNyKKm3yu RMZ/x69jG2IN5gxveJFZT5zrBx2yHtc= X-Google-Smtp-Source: ABdhPJzcauz1THkeeVlb6mBT8pcAEMtQpvH1BbYCkDNkcBpqkfpkdSiTlz3sswz7bOSVaZfOoEWhLg== X-Received: by 2002:a63:571e:: with SMTP id l30mr11899800pgb.220.1595659328598; Fri, 24 Jul 2020 23:42:08 -0700 (PDT) Received: from localhost (61-220-137-37.HINET-IP.hinet.net. [61.220.137.37]) by smtp.gmail.com with ESMTPSA id m1sm7384790pjy.0.2020.07.24.23.42.06 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 24 Jul 2020 23:42:07 -0700 (PDT) From: You-Sheng Yang To: libcamera-devel@lists.libcamera.org Date: Sat, 25 Jul 2020 14:42:04 +0800 Message-Id: <20200725064204.1481351-1-vicamo.yang@canonical.com> X-Mailer: git-send-email 2.27.0 MIME-Version: 1.0 X-Mailman-Approved-At: Sat, 25 Jul 2020 13:37:48 +0200 Subject: [libcamera-devel] [PATCH] qcam: Fix spelling X-BeenThere: libcamera-devel@lists.libcamera.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: libcamera-devel-bounces@lists.libcamera.org Sender: "libcamera-devel" Fix a typo in the word "Unsupported". Signed-off-by: You-Sheng Yang Reviewed-by: Laurent Pinchart Reviewed-by: Kieran Bingham --- src/qcam/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qcam/main_window.cpp b/src/qcam/main_window.cpp index 7bc1360..1776742 100644 --- a/src/qcam/main_window.cpp +++ b/src/qcam/main_window.cpp @@ -361,7 +361,7 @@ int MainWindow::startCapture() break; default: if (roles.size() != 1) { - qWarning() << "Unsuported stream configuration"; + qWarning() << "Unsupported stream configuration"; return -EINVAL; } break;