diff options
author | Thomas Klausner <wiz@NetBSD.org> | 2013-06-02 23:36:52 +0200 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2013-06-06 23:01:22 -0700 |
commit | 414341bd08353c4711cc9c39013ad5023a023738 (patch) | |
tree | df7fe31e3faef155ddf3490381f7e16b08571d1a /src | |
parent | 0833e0086b9712b1c29571919899d5d17fea8382 (diff) |
Use uint32_t for a variable that's passed to a function expecting a uint32_t.
Reviewed-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/ast_vgatool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ast_vgatool.c b/src/ast_vgatool.c index 513cf7b..378822a 100644 --- a/src/ast_vgatool.c +++ b/src/ast_vgatool.c @@ -2709,7 +2709,7 @@ void vGetDefaultSettings(ScrnInfoPtr pScrn) Bool InitVGA(ScrnInfoPtr pScrn, ULONG Flags) { ASTRecPtr pAST; - ULONG ulData; + uint32_t ulData; pAST = ASTPTR(pScrn); @@ -3005,7 +3005,7 @@ GetVGAEDID(ScrnInfoPtr pScrn, unsigned char *pEDIDBuffer) Bool bInitAST1180(ScrnInfoPtr pScrn) { ASTRecPtr pAST; - ULONG ulData; + uint32_t ulData; pAST = ASTPTR(pScrn); |