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 22b4bc51fb4f..44fc924ad008 100644 --- a/Documentation/printk-formats.txt +++ b/Documentation/printk-formats.txt | |||
@@ -185,11 +185,11 @@ struct va_format: | |||
185 | 185 | ||
186 | u64 SHOULD be printed with %llu/%llx, (unsigned long long): | 186 | u64 SHOULD be printed with %llu/%llx, (unsigned long long): |
187 | 187 | ||
188 | printk("%llu", (unsigned long long)u64_var); | 188 | printk("%llu", u64_var); |
189 | 189 | ||
190 | s64 SHOULD be printed with %lld/%llx, (long long): | 190 | s64 SHOULD be printed with %lld/%llx, (long long): |
191 | 191 | ||
192 | printk("%lld", (long long)s64_var); | 192 | printk("%lld", s64_var); |
193 | 193 | ||
194 | If <type> is dependent on a config option for its size (e.g., sector_t, | 194 | If <type> is dependent on a config option for its size (e.g., sector_t, |
195 | blkcnt_t) or is architecture-dependent for its size (e.g., tcflag_t), use a | 195 | blkcnt_t) or is architecture-dependent for its size (e.g., tcflag_t), use a |