aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-20 22:39:32 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-12-20 22:39:32 +0000
commit064082e68a3aa3a5c4fcc58bb2d3e1f7989939d1 (patch)
treedbf3b26c28f19e5be18d0c19f671a3a992aca5c8 /doc
parent90c8f5dde0f90e508819918cb5fba86f9735716f (diff)
Change G_GINT64_CONSTANT(xxxxU) to G_GUINT64_CONSTANT(xxxx)
svn path=/trunk/; revision=54314
Diffstat (limited to 'doc')
-rw-r--r--doc/README.developer4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/README.developer b/doc/README.developer
index 0401f5d9b9..9f2a059f4e 100644
--- a/doc/README.developer
+++ b/doc/README.developer
@@ -182,11 +182,11 @@ use "LL" at the end of the constant - not all compilers use "LL" for
that. Instead, put the constant in a call to the "G_GINT64_CONSTANT()"
macro, e.g.
- G_GINT64_CONSTANT(11644473600U)
+ G_GINT64_CONSTANT(-11644473600), G_GUINT64_CONSTANT(11644473600)
rather than
- 11644473600ULL
+ -11644473600LL, 11644473600ULL
Don't assume that you can scan through a va_list initialized by va_start
more than once without closing it with va_end and re-initializing it with