Skip to content

Commit cafcb56

Browse files
committed
Remove unused parameter
1 parent 0318dcf commit cafcb56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datacopier.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func pldatacopy(copyfrom *int, copyto *int, list []processLog) []processLog {
4848
// Thread safe data copy from one slice to another
4949
// This method allows us to specify a length which may be safer for
5050
// us in the long run...
51-
func pldatacopylen(copyfrom *int, copyto *int, list []processLog, copylen int) []processLog {
51+
func pldatacopylen(copyfrom *int, copyto *int, list []processLog) []processLog {
5252
//protect memory by copying only what we know we've got
5353
*copyto = *copyto + 1
5454
if *copyto > 0 && *copyto > *copyfrom && *copyto <= len(list) {

0 commit comments

Comments
 (0)