t* My version of sent
       
   URI git clone git://git.codevoid.de/sent-sdk.git
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 4a114392bbdef9fc23d7f346ad1dab4f855bed17
   DIR parent 0b9b4d2439241532a41e0361b17a2f9d0e2b850a
   URI Author: Markus Teich <markus.teich@stusta.mhn.de>
       Date:   Sat, 31 Oct 2015 16:25:02 +0100
       
       remove unused type qualifiers
       
       Diffstat:
         M sent.c                              |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/sent.c b/sent.c
       t@@ -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;