make this operate the same but be slightly less confusing

SVN revision: 76812
This commit is contained in:
Mike Blumenkrantz 2012-09-18 11:54:38 +00:00
parent 82e08ce5e4
commit b041db3c1a
1 changed files with 3 additions and 2 deletions

View File

@ -433,8 +433,9 @@ _e_thumb_generate(E_Thumb *eth)
4, 11, 2, 13
};
data3 = malloc(ww * hh * sizeof(unsigned int));
memcpy(data3, data, ww * hh * sizeof(unsigned int));
/* ww = hh = 1 here */
data3 = malloc(sizeof(unsigned int));
memcpy(data3, data, sizeof(unsigned int));
// sort_id
n = 0;
#define A(v) (((v) >> 24) & 0xff)