Changeset 553

Show
Ignore:
Timestamp:
05/07/07 21:49:00 (2 years ago)
Author:
plindner
Message:

further prototype fixes

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/server/thread.c

    r551 r553  
    388388 * lazy-expiring as needed. 
    389389 */ 
    390 item *mt_item_get_notedeleted(char *key, size_t nkey, bool *delete_locked) { 
     390item *mt_item_get_notedeleted(const char *key, const size_t nkey, bool *delete_locked) { 
    391391    item *it; 
    392392    pthread_mutex_lock(&cache_lock); 
     
    399399 * Returns an item whether or not it's been marked as expired or deleted. 
    400400 */ 
    401 item *mt_item_get_nocheck(char *key, size_t nkey) { 
     401item *mt_item_get_nocheck(const char *key, const size_t nkey) { 
    402402    item *it; 
    403403