clover: Fix build after the addition of enum pipe_flush_flags

Broken since commit 598cc1f74d
This commit is contained in:
Tom Stellard
2013-01-04 15:47:53 +00:00
parent bce36d1556
commit 54f3a3e88d
@@ -53,7 +53,7 @@ _cl_command_queue::flush() {
[](event_ptr &ev) { return !ev->signalled(); });
// Flush and fence them.
pipe->flush(pipe, &fence, 0);
pipe->flush(pipe, &fence, (enum pipe_flush_flags)0);
std::for_each(first, last, [&](event_ptr &ev) { ev->fence(fence); });
screen->fence_reference(screen, &fence, NULL);
queued_events.erase(first, last);