@@ -390,7 +390,7 @@ static xdchange_t *xdl_add_change(xdchange_t *xscr, long i1, long i2, long chg1,
390
390
}
391
391
392
392
393
- static int recs_match (xrecord_t * rec1 , xrecord_t * rec2 , long flags )
393
+ static int recs_match (xrecord_t * rec1 , xrecord_t * rec2 )
394
394
{
395
395
return (rec1 -> ha == rec2 -> ha );
396
396
}
@@ -756,10 +756,10 @@ static inline int group_previous(xdfile_t *xdf, struct xdlgroup *g)
756
756
* following group, expand this group to include it. Return 0 on success or -1
757
757
* if g cannot be slid down.
758
758
*/
759
- static int group_slide_down (xdfile_t * xdf , struct xdlgroup * g , long flags )
759
+ static int group_slide_down (xdfile_t * xdf , struct xdlgroup * g )
760
760
{
761
761
if (g -> end < xdf -> nrec &&
762
- recs_match (xdf -> recs [g -> start ], xdf -> recs [g -> end ], flags )) {
762
+ recs_match (xdf -> recs [g -> start ], xdf -> recs [g -> end ])) {
763
763
xdf -> rchg [g -> start ++ ] = 0 ;
764
764
xdf -> rchg [g -> end ++ ] = 1 ;
765
765
@@ -777,10 +777,10 @@ static int group_slide_down(xdfile_t *xdf, struct xdlgroup *g, long flags)
777
777
* into a previous group, expand this group to include it. Return 0 on success
778
778
* or -1 if g cannot be slid up.
779
779
*/
780
- static int group_slide_up (xdfile_t * xdf , struct xdlgroup * g , long flags )
780
+ static int group_slide_up (xdfile_t * xdf , struct xdlgroup * g )
781
781
{
782
782
if (g -> start > 0 &&
783
- recs_match (xdf -> recs [g -> start - 1 ], xdf -> recs [g -> end - 1 ], flags )) {
783
+ recs_match (xdf -> recs [g -> start - 1 ], xdf -> recs [g -> end - 1 ])) {
784
784
xdf -> rchg [-- g -> start ] = 1 ;
785
785
xdf -> rchg [-- g -> end ] = 0 ;
786
786
@@ -830,7 +830,7 @@ int xdl_change_compact(xdfile_t *xdf, xdfile_t *xdfo, long flags) {
830
830
end_matching_other = -1 ;
831
831
832
832
/* Shift the group backward as much as possible: */
833
- while (!group_slide_up (xdf , & g , flags ))
833
+ while (!group_slide_up (xdf , & g ))
834
834
if (group_previous (xdfo , & go ))
835
835
BUG ("group sync broken sliding up" );
836
836
@@ -845,7 +845,7 @@ int xdl_change_compact(xdfile_t *xdf, xdfile_t *xdfo, long flags) {
845
845
846
846
/* Now shift the group forward as far as possible: */
847
847
while (1 ) {
848
- if (group_slide_down (xdf , & g , flags ))
848
+ if (group_slide_down (xdf , & g ))
849
849
break ;
850
850
if (group_next (xdfo , & go ))
851
851
BUG ("group sync broken sliding down" );
@@ -872,7 +872,7 @@ int xdl_change_compact(xdfile_t *xdf, xdfile_t *xdfo, long flags) {
872
872
* other file that it can align with.
873
873
*/
874
874
while (go .end == go .start ) {
875
- if (group_slide_up (xdf , & g , flags ))
875
+ if (group_slide_up (xdf , & g ))
876
876
BUG ("match disappeared" );
877
877
if (group_previous (xdfo , & go ))
878
878
BUG ("group sync broken sliding to match" );
@@ -915,7 +915,7 @@ int xdl_change_compact(xdfile_t *xdf, xdfile_t *xdfo, long flags) {
915
915
}
916
916
917
917
while (g .end > best_shift ) {
918
- if (group_slide_up (xdf , & g , flags ))
918
+ if (group_slide_up (xdf , & g ))
919
919
BUG ("best shift unreached" );
920
920
if (group_previous (xdfo , & go ))
921
921
BUG ("group sync broken sliding to blank line" );
0 commit comments