diff options
author | Matthias Clasen <mclasen@redhat.com> | 2013-01-07 21:05:07 -0500 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2013-01-07 21:07:01 -0500 |
commit | ea9d405f1c5bd964ca52f2f07d49c0a49177e478 (patch) | |
tree | a4e7eb0ec28ce05fb425c14e6974fa419590be56 /tests | |
parent | c89e5e952fe1a3349af43e5e608ac9eef87811cf (diff) | |
download | pango-ea9d405f1c5bd964ca52f2f07d49c0a49177e478.tar.gz |
Avoid a compiler warning
ifdef out a function whose only use is already ifdef'ed out.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/testboundaries.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testboundaries.c b/tests/testboundaries.c index 30a9f31a..aa3cc5c9 100644 --- a/tests/testboundaries.c +++ b/tests/testboundaries.c @@ -274,6 +274,7 @@ check_grapheme_invariants (const char *text, } +#if 0 static void print_sentences (const char *text, PangoLogAttr *attrs); static void @@ -301,6 +302,7 @@ print_sentences (const char *text, ++i; } } +#endif static void check_invariants (const char *text) |