Skip to content

Commit

Permalink
Fix some printf formats
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND authored and SeanTAllen committed Aug 27, 2020
1 parent c2fb5a1 commit 0a2ae19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/lkl/kernel/signal.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void lkl_process_trap(int signr, struct ucontext *uctx)
LKL_TRACE("enter\n");

while (get_signal(&ksig)) {
LKL_TRACE("ksig.sig=", ksig.sig);
LKL_TRACE("ksig.sig=%d", ksig.sig);

/* Handle required signal */
if(signr == ksig.sig)
Expand All @@ -66,7 +66,7 @@ void do_signal(struct pt_regs *regs)
memset(&uc, 0, sizeof(uc));
initialize_uctx(&uc, regs);
while (get_signal(&ksig)) {
LKL_TRACE("ksig.sig=", ksig.sig);
LKL_TRACE("ksig.sig=%d", ksig.sig);

/* Whee! Actually deliver the signal. */
handle_signal(&ksig, &uc);
Expand Down

0 comments on commit 0a2ae19

Please sign in to comment.