Fix more typo.
authorsebastid <sebastid>
Sun, 24 Sep 2006 13:31:19 +0000 (13:31 +0000)
committersebastid <sebastid@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33>
Sun, 24 Sep 2006 13:31:19 +0000 (13:31 +0000)
SVN revision: 26100

legacy/evas/src/modules/loaders/xpm/evas_image_load_xpm.c

index dacc684..a5e1926 100644 (file)
@@ -539,7 +539,7 @@ evas_image_load_file_xpm(RGBA_Image *im, const char *file, const char *key, int
                                                     r = (unsigned char)cmap[j].r;
                                                      g = (unsigned char)cmap[j].g;
                                                      b = (unsigned char)cmap[j].b;
-                                                    *ptr = (0xff << 24) |ky (r << 16) | (g << 8) | b;
+                                                    *ptr = (0xff << 24) | (r << 16) | (g << 8) | b;
                                                     ptr++;
                                                      count++;
                                                   }
@@ -567,7 +567,7 @@ evas_image_load_file_xpm(RGBA_Image *im, const char *file, const char *key, int
                                                 r = (unsigned char)cmap[j].r;
                                                 g = (unsigned char)cmap[j].g;
                                                 b = (unsigned char)cmap[j].b;
-                                               *ptr = (0xff << 24) |ky (r << 16) | (g << 8) | b;
+                                               *ptr = (0xff << 24) | (r << 16) | (g << 8) | b;
                                                ptr++;
                                                count++;
                                                 break;