Mercurial > hg > xemacs-beta
comparison src/elhash.c @ 2333:ba4677f54a05
[xemacs-hg @ 2004-10-14 17:26:18 by james]
More unused parameter fixes.
author | james |
---|---|
date | Thu, 14 Oct 2004 17:26:25 +0000 |
parents | 04bc9d2f42c7 |
children | ecf1ebac70d8 |
comparison
equal
deleted
inserted
replaced
2332:29a88fa7050c | 2333:ba4677f54a05 |
---|---|
406 write_fmt_string (printcharfun, " 0x%x>", ht->header.uid); | 406 write_fmt_string (printcharfun, " 0x%x>", ht->header.uid); |
407 } | 407 } |
408 } | 408 } |
409 | 409 |
410 static void | 410 static void |
411 free_hentries (htentry *hentries, size_t size) | 411 free_hentries (htentry *hentries, |
412 #ifdef ERROR_CHECK_STRUCTURES | |
413 size_t size | |
414 #else | |
415 size_t UNUSED (size) | |
416 #endif | |
417 ) | |
412 { | 418 { |
413 #ifdef ERROR_CHECK_STRUCTURES | 419 #ifdef ERROR_CHECK_STRUCTURES |
414 /* Ensure a crash if other code uses the discarded entries afterwards. */ | 420 /* Ensure a crash if other code uses the discarded entries afterwards. */ |
415 htentry *e, *sentinel; | 421 htentry *e, *sentinel; |
416 | 422 |