Skip to content

Commit

Permalink
Merge pull request #249 from virtualopensystems/small_fix
Browse files Browse the repository at this point in the history
fix 'tonum' in vhost_user.lua
  • Loading branch information
lukego committed Sep 2, 2014
2 parents 7fb3e2a + 13971e3 commit b8bdbec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/vhost/vhost_user.lua
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ function VhostUser:set_vring_kick (msg, fds, nfds)
assert(nfds == 1)
self.dev:set_vring_kick(idx, fds[0])
else
print("Should start polling on virtq "..tonum(idx))
print("Should start polling on virtq "..tonumber(idx))
end
end

Expand Down

0 comments on commit b8bdbec

Please sign in to comment.