diff options
author | Benjamin Otte <otte@redhat.com> | 2012-03-07 02:59:30 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2012-03-07 02:59:30 +0100 |
commit | b83dcc26ad8079c621c7212359599a956807f96d (patch) | |
tree | 17c89ee355721c6cebc3052b40de694842c8c4ee /tests | |
parent | 9f8087b7627aa733cb9c07bb1c326ec8f9dd59dd (diff) | |
download | gtk+-b83dcc26ad8079c621c7212359599a956807f96d.tar.gz |
tests: Fix gcc warning
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testcolorchooser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testcolorchooser.c b/tests/testcolorchooser.c index 2ef8808083..da6633b599 100644 --- a/tests/testcolorchooser.c +++ b/tests/testcolorchooser.c @@ -87,7 +87,7 @@ main (int argc, char *argv[]) else if (g_strcmp0 (argv[i], "--no-palette") == 0) { gtk_color_chooser_add_palette (GTK_COLOR_CHOOSER (dialog), - FALSE, 0, NULL, 0); + FALSE, 0, 0, NULL); } } |