aboutsummaryrefslogtreecommitdiffstats
path: root/lib/vsprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vsprintf.c')
-rw-r--r--lib/vsprintf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vsprintf.c b/lib/vsprintf.c
index e3bf4e0f10b5..176641cc549d 100644
--- a/lib/vsprintf.c
+++ b/lib/vsprintf.c
@@ -1954,13 +1954,13 @@ set_precision(struct printf_spec *spec, int prec)
1954 * This function generally follows C99 vsnprintf, but has some 1954 * This function generally follows C99 vsnprintf, but has some
1955 * extensions and a few limitations: 1955 * extensions and a few limitations:
1956 * 1956 *
1957 * %n is unsupported 1957 * - ``%n`` is unsupported
1958 * %p* is handled by pointer() 1958 * - ``%p*`` is handled by pointer()
1959 * 1959 *
1960 * See pointer() or Documentation/printk-formats.txt for more 1960 * See pointer() or Documentation/printk-formats.txt for more
1961 * extensive description. 1961 * extensive description.
1962 * 1962 *
1963 * ** Please update the documentation in both places when making changes ** 1963 * **Please update the documentation in both places when making changes**
1964 * 1964 *
1965 * The return value is the number of characters which would 1965 * The return value is the number of characters which would
1966 * be generated for the given input, excluding the trailing 1966 * be generated for the given input, excluding the trailing