remove unused type qualifiers

This commit is contained in:
Markus Teich 2015-10-31 16:25:02 +01:00
parent 0b9b4d2439
commit 4a114392bb
1 changed files with 2 additions and 2 deletions

4
sent.c
View File

@ -279,8 +279,8 @@ void pngscale(Image *img)
unsigned int x, y;
unsigned int width = img->ximg->width;
unsigned int height = img->ximg->height;
char* __restrict__ newBuf = img->ximg->data;
unsigned char * __restrict__ ibuf;
char* newBuf = img->ximg->data;
unsigned char* ibuf;
unsigned int jdy = img->ximg->bytes_per_line / 4 - width;
unsigned int dx = (img->bufwidth << 10) / width;