diff options
author | Alex Deucher <alex@botch2.(none)> | 2008-02-29 04:07:05 -0500 |
---|---|---|
committer | Alex Deucher <alex@botch2.(none)> | 2008-02-29 04:07:05 -0500 |
commit | a66d37d1a896ec934989592457c2beff8e6f1639 (patch) | |
tree | 93119f61923805993a8df96a486c0ff75eda7ebf /src | |
parent | e56062960be0c8d3947861dd5e0691fce6516b99 (diff) |
fix off-by-one in last commit
Diffstat (limited to 'src')
-rw-r--r-- | src/radeon_probe.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_probe.h b/src/radeon_probe.h index 21e3439c..909a5da4 100644 --- a/src/radeon_probe.h +++ b/src/radeon_probe.h @@ -363,8 +363,8 @@ struct avivo_state CARD32 ddia[37]; /* scalers */ - CARD32 d1scl[39]; - CARD32 d2scl[39]; + CARD32 d1scl[40]; + CARD32 d2scl[40]; CARD32 dxscl[6+2]; }; |