diff mbox series

obexd: Fix the code style

Message ID 20220705092952.11868-1-wangyouwan@uniontech.com (mailing list archive)
State Accepted
Commit 575778a45f84a665e66074ef1e86926e5380f42e
Headers show
Series obexd: Fix the code style | expand

Checks

Context Check Description
tedd_an/pre-ci_am success Success
tedd_an/checkpatch success Checkpatch PASS
tedd_an/gitlint success Gitlint PASS
tedd_an/setupell success Setup ELL PASS
tedd_an/buildprep success Build Prep PASS
tedd_an/build success Build Configuration PASS
tedd_an/makecheck success Make Check PASS
tedd_an/makecheckvalgrind success Make Check PASS
tedd_an/makedistcheck success Make Distcheck PASS
tedd_an/build_extell success Build External ELL PASS
tedd_an/build_extell_make success Build Make with External ELL PASS
tedd_an/scan_build success Pass

Commit Message

Youwan Wang July 5, 2022, 9:29 a.m. UTC
---
 obexd/client/session.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com July 5, 2022, 10:32 a.m. UTC | #1
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=656581

---Test result---

Test Summary:
CheckPatch                    PASS      0.86 seconds
GitLint                       PASS      0.58 seconds
Prep - Setup ELL              PASS      26.18 seconds
Build - Prep                  PASS      0.61 seconds
Build - Configure             PASS      8.38 seconds
Build - Make                  PASS      995.88 seconds
Make Check                    PASS      12.16 seconds
Make Check w/Valgrind         PASS      292.34 seconds
Make Distcheck                PASS      244.11 seconds
Build w/ext ELL - Configure   PASS      8.88 seconds
Build w/ext ELL - Make        PASS      84.09 seconds
Incremental Build w/ patches  PASS      0.00 seconds
Scan Build                    PASS      513.76 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org July 5, 2022, 5:20 p.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Tue,  5 Jul 2022 17:29:52 +0800 you wrote:
> ---
>  obexd/client/session.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Here is the summary with links:
  - obexd: Fix the code style
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=575778a45f84

You are awesome, thank you!
diff mbox series

Patch

diff --git a/obexd/client/session.c b/obexd/client/session.c
index 6955a8089..7d8ebb04e 100644
--- a/obexd/client/session.c
+++ b/obexd/client/session.c
@@ -950,7 +950,7 @@  static void transfer_complete(struct obc_transfer *transfer,
 {
 	struct obc_session *session = user_data;
 
-	if (err != 0)
+	if (err)
 		goto fail;
 
 	session_notify_complete(session, transfer);