aboutsummaryrefslogtreecommitdiffstats
path: root/doc/README.developer
diff options
context:
space:
mode:
Diffstat (limited to 'doc/README.developer')
-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