Skip to content

Commit cea23d3

Browse files
committed
locale.c: Remove useless ++ increment
This value is not going to be used again. I put in the ++ out of habit.
1 parent 29a29d6 commit cea23d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

locale.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9962,7 +9962,7 @@ Perl_mem_collxfrm_(pTHX_ const char *input_string,
99629962
}
99639963

99649964
len = d - sans_highs;
9965-
*d++ = '\0';
9965+
*d = '\0';
99669966

99679967
s = sans_highs;
99689968
}

0 commit comments

Comments
 (0)