1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

(uncache_image): Fix typo.

This commit is contained in:
Chong Yidong 2007-05-25 02:02:25 +00:00
parent f0f80eb7bb
commit 91be6b6665

View File

@ -1639,7 +1639,7 @@ uncache_image (f, spec)
Lisp_Object spec; Lisp_Object spec;
{ {
struct image_cache *c = FRAME_X_IMAGE_CACHE (f); struct image_cache *c = FRAME_X_IMAGE_CACHE (f);
struct image *img = IMAGE_FROM_ID (f, lookup_image (f, spec)); struct image *img;
unsigned hash = sxhash (spec, 0); unsigned hash = sxhash (spec, 0);
int i = hash % IMAGE_CACHE_BUCKETS_SIZE; int i = hash % IMAGE_CACHE_BUCKETS_SIZE;