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

Commit dc57f4d9 authored by Mark Salyzyn's avatar Mark Salyzyn Committed by Gerrit Code Review
Browse files

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

parents ccae68e4 6e2c0f70
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;