summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@behdad.org>2018-01-28 11:10:20 -0800
committerBehdad Esfahbod <behdad@behdad.org>2018-01-28 11:10:20 -0800
commit3e715b40d3d65f72332eab10e6cf3f8a976c7db5 (patch)
tree44f975dd8466ba9323ccc2f8d5c84ca27e3b7e1a
parent6523694b34417b1e18c25819ed0ab0d7c16e8922 (diff)
downloadfribidi-3e715b40d3d65f72332eab10e6cf3f8a976c7db5.tar.gz
Fix non-debug build
-rw-r--r--lib/fribidi-bidi.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/fribidi-bidi.c b/lib/fribidi-bidi.c
index 53aab3d..12cb44e 100644
--- a/lib/fribidi-bidi.c
+++ b/lib/fribidi-bidi.c
@@ -260,6 +260,17 @@ print_bidi_string (
MSG2 ("%c", fribidi_char_from_bidi_type (bidi_types[i]));
MSG ("\n");
}
+
+static void print_pairing_nodes(FriBidiPairingNode *nodes)
+{
+ MSG ("Pairs: ");
+ while (nodes)
+ {
+ MSG3 ("(%d, %d) ", nodes->open->pos, nodes->close->pos);
+ nodes = nodes->next;
+ }
+ MSG ("\n");
+}
#endif /* DEBUG */
@@ -403,17 +414,6 @@ static FriBidiPairingNode * pairing_nodes_push(FriBidiPairingNode *nodes,
return nodes;
}
-static void print_pairing_nodes(FriBidiPairingNode *nodes)
-{
- MSG ("Pairs: ");
- while (nodes)
- {
- MSG3 ("(%d, %d) ", nodes->open->pos, nodes->close->pos);
- nodes = nodes->next;
- }
- MSG ("\n");
-}
-
/* Sort by merge sort */
static void pairing_nodes_front_back_split(FriBidiPairingNode *source,
/* output */