summaryrefslogtreecommitdiff
path: root/src/video_out/video_out_aa.c
diff options
context:
space:
mode:
authorJuergen Keil <jkeil@users.sourceforge.net>2001-10-03 15:14:03 +0000
committerJuergen Keil <jkeil@users.sourceforge.net>2001-10-03 15:14:03 +0000
commit5ccaed110e02488e221cd2a945c95c3ecf5ea1ca (patch)
treea24de3726f895bc69e40bbb75d37229c02f41f54 /src/video_out/video_out_aa.c
parentf50cc487fde6aa1660a5c914f22be10d0020c8f4 (diff)
downloadxine-lib-5ccaed110e02488e221cd2a945c95c3ecf5ea1ca.tar.gz
xine-lib-5ccaed110e02488e221cd2a945c95c3ecf5ea1ca.tar.bz2
Eliminate void* pointer arithmetic, and fixed some char* / unsigned char*
warnings. CVS patchset: 724 CVS date: 2001/10/03 15:14:03
Diffstat (limited to 'src/video_out/video_out_aa.c')
-rw-r--r--src/video_out/video_out_aa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_out/video_out_aa.c b/src/video_out/video_out_aa.c
index 52b67f65a..ae8d76767 100644
--- a/src/video_out/video_out_aa.c
+++ b/src/video_out/video_out_aa.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: video_out_aa.c,v 1.12 2001/09/26 17:19:49 jkeil Exp $
+ * $Id: video_out_aa.c,v 1.13 2001/10/03 15:14:03 jkeil Exp $
*
* video_out_aa.c, ascii-art output plugin for xine
*
@@ -82,7 +82,7 @@ static uint32_t aa_get_capabilities (vo_driver_t *this) {
}
static void *malloc_aligned (size_t alignment, size_t size, void **mem) {
- void *aligned;
+ char *aligned;
aligned = malloc (size+alignment);
*mem = aligned;