comparison src/dired.c @ 1726:a8d8f419b459

[xemacs-hg @ 2003-09-30 15:26:34 by james] Add type information to xfree to avoid alias creation.
author james
date Tue, 30 Sep 2003 15:27:01 +0000
parents 804517e16990
children 04bc9d2f42c7
comparison
equal deleted inserted replaced
1725:7ff8f4d70aec 1726:a8d8f419b459
575 static void 575 static void
576 free_user_cache (struct user_cache *cache) 576 free_user_cache (struct user_cache *cache)
577 { 577 {
578 int i; 578 int i;
579 for (i = 0; i < cache->length; i++) 579 for (i = 0; i < cache->length; i++)
580 xfree (cache->user_names[i].ptr); 580 xfree (cache->user_names[i].ptr, Ibyte *);
581 xfree (cache->user_names); 581 xfree (cache->user_names, struct user_name *);
582 xzero (*cache); 582 xzero (*cache);
583 } 583 }
584 584
585 static Lisp_Object 585 static Lisp_Object
586 user_name_completion_unwind (Lisp_Object cache_incomplete_p) 586 user_name_completion_unwind (Lisp_Object cache_incomplete_p)