diff options
author | Peter McCurdy <pmccurdy@skeptopotamus> | 2008-08-25 10:00:09 -0400 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2008-10-01 15:01:07 -0400 |
commit | 033b67aff0cdb690b697408db52161f5fd69c597 (patch) | |
tree | 7c29122ddf3e552cdf73b521088df2e9f25eadeb | |
parent | c3fe204d31e0b58ce1a48d7e7e9365d20dfbb95a (diff) |
2008-08-24 Peter McCurdy <pmccurdy@skeptopotamus>
* dbus/dbus-marshal-recursive.c: A stray comma
between two string literals caused incorrect
output and a compiler warning.
Signed-off-by: Colin Walters <walters@verbum.org>
-rw-r--r-- | dbus/dbus-marshal-recursive.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbus/dbus-marshal-recursive.c b/dbus/dbus-marshal-recursive.c index 6c2902e2..76ee344f 100644 --- a/dbus/dbus-marshal-recursive.c +++ b/dbus/dbus-marshal-recursive.c @@ -1654,7 +1654,7 @@ writer_recurse_init_and_check (DBusTypeWriter *writer, _dbus_type_to_string (expected), _dbus_string_get_const_data (writer->type_str), writer->type_pos); else - _dbus_warn_check_failed ("Writing an element of type %s, but no value is expected here\n", + _dbus_warn_check_failed ("Writing an element of type %s, but no value is expected here\n" "The overall signature expected here was '%s' and we are on byte %d of that signature.\n", _dbus_type_to_string (sub->container_type), _dbus_string_get_const_data (writer->type_str), writer->type_pos); |