diff options
author | Jonathan Kang <jonathan121537@gmail.com> | 2015-12-15 07:08:13 +0800 |
---|---|---|
committer | Jonathan Kang <jonathan121537@gmail.com> | 2015-12-15 07:08:13 +0800 |
commit | 6f68e55ae8db146e8ac409af33a49117be5fa082 (patch) | |
tree | 5b78a36c772e05889b3b8883fdacdb05b4f9ee9a /tests | |
parent | 86d8a1c7c6718031094169ff2848f2cbeb97d191 (diff) | |
download | gnome-logs-6f68e55ae8db146e8ac409af33a49117be5fa082.tar.gz |
Fix test error for few argument in tests/test-gl-util.c
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-gl-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test-gl-util.c b/tests/test-gl-util.c index 5fac6d9..abfcb16 100644 --- a/tests/test-gl-util.c +++ b/tests/test-gl-util.c @@ -54,7 +54,7 @@ util_timestamp_to_display (void) gchar *compare; compare = gl_util_timestamp_to_display (times[i].microsecs, now, - times[i].format); + times[i].format, FALSE); g_assert_cmpstr (compare, ==, times[i].time); g_free (compare); } |