Skip to content

Commit

Permalink
Merge pull request #67 from DariaFedorova/master
Browse files Browse the repository at this point in the history
Return time in norepres_getold
  • Loading branch information
jirfag committed Sep 12, 2016
2 parents ae3817a + 26be574 commit 5ddaf55
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion norepres.lua
Expand Up @@ -42,7 +42,8 @@ function norepres_getold(time, limit)
if box.unpack('i', tuple[3]) < time then
table.insert(ret, { tuple[0], tuple[1],
box.unpack('i', string.sub(tuple[2], 0, 4)),
box.unpack('i', string.sub(tuple[2], 5, 8)) })
box.unpack('i', string.sub(tuple[2], 5, 8)),
tuple[3] })
end
end
return unpack(ret)
Expand Down

0 comments on commit 5ddaf55

Please sign in to comment.