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

Commit 174f30b1 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Android Git Automerger
Browse files

am dc57f4d9: Merge "logd: build breakage in git_master-nova @ 1151709"

* commit 'dc57f4d9':
  logd: build breakage in git_master-nova @ 1151709
parents fd5231d7 dc57f4d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -103,7 +103,7 @@ bool LogListener::onDataAvailable(SocketClient *cli) {
    // truncated message to the logs.

    logbuf->log(log_id, realtime, cred->uid, cred->pid, tid, msg,
        (n <= USHRT_MAX) ? (unsigned short) n : USHRT_MAX);
        ((size_t) n <= USHRT_MAX) ? (unsigned short) n : USHRT_MAX);
    reader->notifyNewLog();

    return true;