Fix bug#9673
authorXiang, Haihao <haihao.xiang@intel.com>
Wed, 17 Jan 2007 02:17:10 +0000 (10:17 +0800)
committerXiang, Haihao <haihao.xiang@intel.com>
Wed, 17 Jan 2007 02:17:10 +0000 (10:17 +0800)
 Cast from pointer to unsinged long and cast to pointer from
 unsinged long

progs/demos/texdown.c

index fc98fddb3100ac2afd765a3fd6bb88fc4206eba6..5fecd9a1489ea70d56f6ac50227e7c92c36f8a2a 100644 (file)
@@ -149,7 +149,7 @@ TypeStr(GLenum type)
  */
 #define ALIGN (1<<12)
 
-static unsigned align(unsigned value, unsigned a)
+static unsigned long align(unsigned long value, unsigned long a)
 {
    return (value + a - 1) & ~(a-1);
 }
@@ -186,10 +186,10 @@ MeasureDownloadRate(void)
 
    printf("alloc %p %p\n", orig_texImage, orig_getImage);
 
-   texImage = (GLubyte *)align((unsigned)orig_texImage, ALIGN);
-   getImage = (GLubyte *)align((unsigned)orig_getImage, ALIGN);   
+   texImage = (GLubyte *)align((unsigned long)orig_texImage, ALIGN);
+   getImage = (GLubyte *)align((unsigned long)orig_getImage, ALIGN);   
 
-   for (i = 1; !(((unsigned)texImage) & i); i<<=1)
+   for (i = 1; !(((unsigned long)texImage) & i); i<<=1)
       ;
    printf("texture image alignment: %d bytes (%p)\n", i, texImage);