wakeup_reason: use vsnprintf instead of snsprintf for vargs.
Bug: 22368519 Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
This commit is contained in:
parent
45e6e57272
commit
1f027b30b5
1 changed files with 1 additions and 1 deletions
|
|
@ -159,7 +159,7 @@ void log_suspend_abort_reason(const char *fmt, ...)
|
|||
|
||||
suspend_abort = true;
|
||||
va_start(args, fmt);
|
||||
snprintf(abort_reason, MAX_SUSPEND_ABORT_LEN, fmt, args);
|
||||
vsnprintf(abort_reason, MAX_SUSPEND_ABORT_LEN, fmt, args);
|
||||
va_end(args);
|
||||
spin_unlock(&resume_reason_lock);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue