Message ID | 20210302102506.Bluez.1.I4b5a2f5249af5dbb7234c6831943dbd8de7c271c@changeid |
---|---|
State | New |
Headers | show |
Series | [Bluez] core: fix a typo in dev_connect | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=440757 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Hi Howard, On Thu, Mar 4, 2021 at 1:02 AM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=440757 > > ---Test result--- > > ############################## > Test: CheckPatch - PASS > > ############################## > Test: CheckGitLint - PASS > > ############################## > Test: CheckBuild - PASS > > ############################## > Test: MakeCheck - PASS > > > > --- > Regards, > Linux Bluetooth Applied, thanks. -- Luiz Augusto von Dentz
diff --git a/src/device.c b/src/device.c index dfba6ee47d07..b99f6fbb04fd 100644 --- a/src/device.c +++ b/src/device.c @@ -2105,7 +2105,7 @@ static DBusMessage *dev_connect(DBusConnection *conn, DBusMessage *msg, if (dev->bredr_state.connected) { /* - * Check if services have been resolved and there is at list + * Check if services have been resolved and there is at least * one connected before switching to connect LE. */ if (dev->bredr_state.svc_resolved &&
Based on the context, it should be 'at least' instead of 'at list'. Reviewed-by: Alain Michaud <alainm@chromium.org> --- src/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)