diff Plugins/Input/wma/libffwma/asf.c @ 411:b13e87374f73 trunk

[svn] Care about pointer signedness.
author chainsaw
date Mon, 09 Jan 2006 12:30:26 -0800
parents 53751ea823c3
children d539e5c5f730
line wrap: on
line diff
--- a/Plugins/Input/wma/libffwma/asf.c	Sun Jan 08 16:49:05 2006 -0800
+++ b/Plugins/Input/wma/libffwma/asf.c	Mon Jan 09 12:30:26 2006 -0800
@@ -757,7 +757,7 @@
 	    /* return packet */
 	    if (asf_st->ds_span > 1) {
 		/* packet descrambling */
-		char* newdata = malloc(asf_st->pkt.size);
+		unsigned char* newdata = malloc(asf_st->pkt.size);
 		if (newdata) {
 		    int offset = 0;
 		    while (offset < asf_st->pkt.size) {