gcc 4 cleanups (mostly unsigned char* vs char*)
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
#include "byte.h"
|
||||
#include "buffer.h"
|
||||
|
||||
int buffer_putalign(buffer* b,const unsigned char* buf,unsigned long int len) {
|
||||
int buffer_putalign(buffer* b,const char* buf,unsigned long int len) {
|
||||
int tmp;
|
||||
while (len>(tmp=b->a-b->p)) {
|
||||
byte_copy(b->x+b->p, tmp, buf);
|
||||
|
||||
Reference in New Issue
Block a user