From 30e0d68cd9d3ad2fe35bb895feb1388539a91e5a Mon Sep 17 00:00:00 2001 From: Dario Sneidermanis Date: Fri, 28 Jun 2013 23:19:25 -0300 Subject: Fix precision typo with C integer types --- c.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'c.html.markdown') diff --git a/c.html.markdown b/c.html.markdown index 15bfa05e..413aad5f 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -50,8 +50,8 @@ short x_short = 0; char x_char = 0; char y_char = 'y'; // Char literals are quoted with '' -long x_long = 0; // Still 32 bytes for historical reasons -long long x_long_long = 0; // Guaranteed to be at least 64 bytes +long x_long = 0; // Still 32 bits for historical reasons +long long x_long_long = 0; // Guaranteed to be at least 64 bits // 32-bit floating-point decimal float x_float = 0.0; -- cgit v1.2.3