Skip to content
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.

Commit

Permalink
psb_buffer: Leave pointer lists with existing types
Browse files Browse the repository at this point in the history
Has no effect on 64bit addressing issue.

Change-Id: I2fce92c7db9c35e69194878b5e78defe1f5cd765
Signed-off-by: Sean V Kelley <[email protected]>
  • Loading branch information
seanvk committed Mar 13, 2014
1 parent 1b83e2c commit 7de3bff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/psb_buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ void psb_buffer_destroy(psb_buffer_p buf)
*
* Returns 0 on success
*/
int psb_buffer_map(psb_buffer_p buf, unsigned long long **address /* out */)
int psb_buffer_map(psb_buffer_p buf, unsigned char **address /* out */)
{
int ret;

Expand Down
2 changes: 1 addition & 1 deletion src/psb_buffer.h
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ void psb_buffer_destroy(psb_buffer_p buf);
*
* Returns 0 on success
*/
int psb_buffer_map(psb_buffer_p buf, unsigned long long **address /* out */);
int psb_buffer_map(psb_buffer_p buf, unsigned char **address /* out */);

int psb_codedbuf_map_mangle(
VADriverContextP ctx,
Expand Down

0 comments on commit 7de3bff

Please sign in to comment.