Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b23b1b96 authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by Automerger Merge Worker
Browse files

Merge "Fix bugprone-posix-return warnings" am: be7e5ea4 am: eb5cc0e9

Change-Id: Ic623d8dbefff4688010a9dd681241dc7b810af91
parents 88fe1402 eb5cc0e9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -485,7 +485,7 @@ int uipc_start_main_server_thread(tUIPC_STATE& uipc) {
  uipc.running = 1;

  if (pthread_create(&uipc.tid, (const pthread_attr_t*)NULL, uipc_read_task,
                     &uipc) < 0) {
                     &uipc) != 0) {
    BTIF_TRACE_ERROR("uipc_thread_create pthread_create failed:%d", errno);
    return -1;
  }