diff options
author | Daniel Stone <daniel@fooishbar.org> | 2005-08-21 06:26:33 +0000 |
---|---|---|
committer | Daniel Stone <daniel@fooishbar.org> | 2005-08-21 06:26:33 +0000 |
commit | 219beaca91b88dabfe05b8e756d558269f7a5148 (patch) | |
tree | e08c49b2347a98641af233948c2e5c1e5a2f163d | |
parent | fdc6997f2edf4dfdcfd877152028bff2a0306999 (diff) |
Fix typo in debug ErrorF.
-rw-r--r-- | src/i830_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/i830_driver.c b/src/i830_driver.c index 50d9ef0c..2eb3b4fd 100644 --- a/src/i830_driver.c +++ b/src/i830_driver.c @@ -3716,7 +3716,7 @@ static void I830SetCloneVBERefresh(ScrnInfoPtr pScrn, int mode, VbeCRTCInfoBlock clock = VBEGetPixelClock(pI830->pVbe, mode, block->PixelClock); #ifdef DEBUG ErrorF("Setting clock %.2fMHz, closest is %.2fMHz\n", - (double)data->block->PixelClock / 1000000.0, + (double)block->PixelClock / 1000000.0, (double)clock / 1000000.0); #endif if (clock) |