From 989467d94a9d92ea4e7575efd8d7ed22581712e9 Mon Sep 17 00:00:00 2001 From: Dan Albert Date: Thu, 2 May 2019 12:25:22 -0700 Subject: [PATCH] Workaround bad markdown parser. Test: None Bug: None Change-Id: I7b2dd6e140aafdf41bfa58516851bfd50eba5e00 --- liblog/include/android/log.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/liblog/include/android/log.h b/liblog/include/android/log.h index b2f0ed974..935590daa 100644 --- a/liblog/include/android/log.h +++ b/liblog/include/android/log.h @@ -122,9 +122,10 @@ int __android_log_vprint(int prio, const char* tag, const char* fmt, va_list ap) * * Most callers should use * [assert(3)](http://man7.org/linux/man-pages/man3/assert.3.html) from - * `` instead, or the `__assert` and `__assert2` functions provided by - * bionic if more control is needed. They support automatically including the - * source filename and line number more conveniently than this function. + * `<assert.h>` instead, or the `__assert` and `__assert2` functions + * provided by bionic if more control is needed. They support automatically + * including the source filename and line number more conveniently than this + * function. */ void __android_log_assert(const char* cond, const char* tag, const char* fmt, ...)