Cosmetic change.
[SXSI/libbp.git] / bp.c
diff --git a/bp.c b/bp.c
index 9d108bb..f1aef19 100644 (file)
--- a/bp.c
+++ b/bp.c
@@ -51,7 +51,7 @@ void bp_print(bp *b, int s, int t)
 }
 
 int *matchtbl,*parenttbl;
-void make_naivetbl(pb *B,int n)
+static void make_naivetbl(pb *B,int n)
 {
   int i,v;
   int *stack,s;
@@ -101,7 +101,7 @@ int childtbl2[2*ETW+1][ETW][(1<<ETW)];
 int depthtbl[(2*ETW+1)*(1<<ETW)];
 int inited = 0;
 
-void make_matchtbl(void)
+static void make_matchtbl(void)
 {
   int i,j,x,r;
   int m,M;
@@ -446,7 +446,6 @@ void saveTree(bp *b, FILE *fp) {
       printf("Error: cannot save number of parentheses to file\n");
       exit(1);
    }
-
    if (fwrite(b->B, sizeof(pb), (b->n+D-1)/D, fp) != ((b->n+D-1)/D)) {
       printf("Error: cannot save parentheses sequence to file\n");
       exit(1);