diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-03-25 22:37:00 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2018-03-25 22:37:00 +0200 |
commit | 6021c3a5d91d63e599756beb3142564db28c3f4e (patch) | |
tree | d4e65e73d5179d839dd2ae10c9c3c3c622f0cb12 /tests/glib-fixture.h | |
parent | 1d4e6c35d72d3c08f390f9ecbc1f881556650bed (diff) | |
download | ayatana-indicator-power-6021c3a5d91d63e599756beb3142564db28c3f4e.tar.gz ayatana-indicator-power-6021c3a5d91d63e599756beb3142564db28c3f4e.tar.bz2 ayatana-indicator-power-6021c3a5d91d63e599756beb3142564db28c3f4e.zip |
tests/glib-fixture.h: Fix printf macro (%d -> %lu).
Diffstat (limited to 'tests/glib-fixture.h')
-rw-r--r-- | tests/glib-fixture.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/glib-fixture.h b/tests/glib-fixture.h index ce834a0..09c37a3 100644 --- a/tests/glib-fixture.h +++ b/tests/glib-fixture.h @@ -52,7 +52,7 @@ class GlibFixture : public ::testing::Test if (expected_log[level] != n) for (size_t i=0; i<n; ++i) - g_print("%d %s\n", (n+1), v[i].c_str()); + g_print("%lu %s\n", (n+1), v[i].c_str()); } expected_log.clear(); |