ANDROID: wakeup_reason: use vsnprintf instead of snsprintf for vargs.
Bug: 22368519 Signed-off-by: Ruchi Kandoi <kandoiruchi@google.com>
This commit is contained in:
committed by
Dmitry Shmidt
parent
7df92a19af
commit
9d17e24b03
@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user