diff options
| -rw-r--r-- | Documentation/printk-formats.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/printk-formats.txt b/Documentation/printk-formats.txt index 6f4eb322ffaf..b4498218c474 100644 --- a/Documentation/printk-formats.txt +++ b/Documentation/printk-formats.txt | |||
| @@ -199,11 +199,11 @@ struct va_format: | |||
| 199 | Do not use this feature without some mechanism to verify the | 199 | Do not use this feature without some mechanism to verify the |
| 200 | correctness of the format string and va_list arguments. | 200 | correctness of the format string and va_list arguments. |
| 201 | 201 | ||
| 202 | u64 SHOULD be printed with %llu/%llx, (unsigned long long): | 202 | u64 SHOULD be printed with %llu/%llx: |
| 203 | 203 | ||
| 204 | printk("%llu", u64_var); | 204 | printk("%llu", u64_var); |
| 205 | 205 | ||
| 206 | s64 SHOULD be printed with %lld/%llx, (long long): | 206 | s64 SHOULD be printed with %lld/%llx: |
| 207 | 207 | ||
| 208 | printk("%lld", s64_var); | 208 | printk("%lld", s64_var); |
| 209 | 209 | ||
