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

Commit 58c3bacc authored by Elliott Hughes's avatar Elliott Hughes
Browse files

Fix a printf format string (caught by clang but not GCC).

Change-Id: I665756615eef74b05ef92f5865d910f29ead0695
parent a4d98484
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -366,7 +366,7 @@ void service_start(struct service *svc, const char *dynamic_args)
    svc->flags |= SVC_RUNNING;

    if ((svc->flags & SVC_EXEC) != 0) {
        INFO("SVC_EXEC pid %d (uid %d gid %d+%d context %s) started; waiting...\n",
        INFO("SVC_EXEC pid %d (uid %d gid %d+%zu context %s) started; waiting...\n",
             svc->pid, svc->uid, svc->gid, svc->nr_supp_gids, svc->seclabel);
        waiting_for_exec = true;
    }