diff options
author | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-12-04 09:09:19 -0800 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-12-04 09:09:19 -0800 |
commit | 6f1eba0548cd6a96e91a4e8be7b91ba6a936eb98 (patch) | |
tree | 982b76d1065fdcb692ca612bc1f68bc06312d3f8 | |
parent | 3bd834a2178ee1273fd84628e87210a500f8fc84 (diff) |
modetest: fix build error due to page_flip_handler name change
Forgot to update this when pushing the pageflip bits.
-rw-r--r-- | tests/modetest/modetest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c index 4739a78b..48178b99 100644 --- a/tests/modetest/modetest.c +++ b/tests/modetest/modetest.c @@ -618,7 +618,7 @@ set_mode(struct connector *c, int count, int page_flip) memset(&evctx, 0, sizeof evctx); evctx.version = DRM_EVENT_CONTEXT_VERSION; evctx.vblank_handler = NULL; - evctx.pageflip_handler = page_flip_handler; + evctx.page_flip_handler = page_flip_handler; while (1) { struct pollfd pfd[2]; |