diff options
author | Fabiano FidĂȘncio <fidencio@redhat.com> | 2015-02-25 17:20:32 +0100 |
---|---|---|
committer | Fabiano FidĂȘncio <fidencio@redhat.com> | 2015-02-25 17:25:03 +0100 |
commit | 37325b4e88953f8bd0d3e87165491764b29d5425 (patch) | |
tree | 3e51df2d93f7a10a831dfc1d56948820b30013a6 /common | |
parent | 3aad79d9c64e85bc2b474df427ccbedbf6840591 (diff) |
Fix typo in pixman_image_get_stride() function
pixman_image_surface_get_stride -> pixman_image_get_stride
Diffstat (limited to 'common')
-rw-r--r-- | common/canvas_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/canvas_base.c b/common/canvas_base.c index 837f1d1..a2dc431 100644 --- a/common/canvas_base.c +++ b/common/canvas_base.c @@ -1035,7 +1035,7 @@ static void dump_surface(pixman_image_t *surface, int cache) uint8_t *data = (uint8_t *)pixman_image_get_data(surface); int width = pixman_image_get_width(surface); int height = pixman_image_get_height(surface); - int stride = pixman_image_surface_get_stride(surface); + int stride = pixman_image_get_stride(surface); uint32_t id = ++file_id; #ifdef WIN32 |