Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 210904 | Differences between
and this patch

Collapse All | Expand All

(-)test/sieve.lua~ (-1 / +1 lines)
Lines 14-20 Link Here
14
    while 1 do
14
    while 1 do
15
      local n = g()
15
      local n = g()
16
      if n == nil then return end
16
      if n == nil then return end
17
      if math.mod(n, p) ~= 0 then coroutine.yield(n) end
17
      if math.fmod(n, p) ~= 0 then coroutine.yield(n) end
18
    end
18
    end
19
  end)
19
  end)
20
end
20
end

Return to bug 210904