diff options
author | Robert Ancell <robert.ancell@canonical.com> | 2012-03-24 23:58:45 +1100 |
---|---|---|
committer | Robert Ancell <robert.ancell@canonical.com> | 2012-03-31 20:34:28 +1100 |
commit | 4143842eb47c1f38b2b4742b0928e4049e38afb9 (patch) | |
tree | e699547e8a4e074790c5f7b6bcddbd6877578b6b /glib/gvariant-serialiser.c | |
parent | 4cf5d2531608b4433fb3348d679f099bd3d29716 (diff) | |
download | glib-4143842eb47c1f38b2b4742b0928e4049e38afb9.tar.gz |
Add missing allow-none annotations for function parameters.
Found using:
find . -name '*.c' | xargs grep 'or %NULL' | grep ' \* @' | grep -v '@error' | grep -v allow-none
Diffstat (limited to 'glib/gvariant-serialiser.c')
-rw-r--r-- | glib/gvariant-serialiser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/gvariant-serialiser.c b/glib/gvariant-serialiser.c index f07251176..d4b668bb8 100644 --- a/glib/gvariant-serialiser.c +++ b/glib/gvariant-serialiser.c @@ -89,7 +89,7 @@ /* < private > * GVariantSerialised: * @type_info: the #GVariantTypeInfo of this value - * @data: the serialised data of this value, or %NULL + * @data: (allow-none): the serialised data of this value, or %NULL * @size: the size of this value * * A structure representing a GVariant in serialised form. This |