]> granicus.if.org Git - fribidi/commitdiff
Fix non-debug build
authorBehdad Esfahbod <behdad@behdad.org>
Sun, 28 Jan 2018 19:10:20 +0000 (11:10 -0800)
committerBehdad Esfahbod <behdad@behdad.org>
Sun, 28 Jan 2018 19:10:20 +0000 (11:10 -0800)
lib/fribidi-bidi.c

index 53aab3dba4af33b1ebb58e4168d3ad828a93f356..12cb44e8478065966934dc0427a5898cea8750e7 100644 (file)
@@ -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 */