Skip to content

Commit 583dffc

Browse files
committed
Bugfix on limits.
1 parent 6769e21 commit 583dffc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

redis.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2107,9 +2107,9 @@ PHP_METHOD(Redis, sort) {
21072107
"$5" _NL
21082108
"LIMIT" _NL
21092109
"$%d" _NL
2110-
"%ld" _NL
2110+
"%d" _NL
21112111
"$%d" _NL
2112-
"%ld" _NL
2112+
"%d" _NL
21132113
, cmd, cmd_len
21142114
, integer_length(limit_low), limit_low
21152115
, integer_length(limit_high), limit_high);

0 commit comments

Comments
 (0)