Changeset 4576

Show
Ignore:
Timestamp:
02/10/07 15:46:48 (2 years ago)
Author:
morris
Message:

wi_runtime_class_name() now returns a wi_string_t

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • wired/trunk/wired/banlist.c

    r4508 r4576  
    144144        wd_tempban_t            *tempban = instance; 
    145145         
    146         return wi_string_with_format(WI_STR("<%s %p>{ip = %@, time_remaining = %.0f}"), 
     146        return wi_string_with_format(WI_STR("<%@ %p>{ip = %@, time_remaining = %.0f}"), 
    147147                wi_runtime_class_name(tempban), 
    148148                tempban, 
  • wired/trunk/wired/chats.c

    r4508 r4576  
    175175        wd_chat_t               *chat = instance; 
    176176 
    177         return wi_string_with_format(WI_STR("<%s %p>{cid = %u, clients = %@}"), 
     177        return wi_string_with_format(WI_STR("<%@ %p>{cid = %u, clients = %@}"), 
    178178                wi_runtime_class_name(chat), 
    179179                chat, 
  • wired/trunk/wired/clients.c

    r4508 r4576  
    215215        wd_client_t                     *client = instance; 
    216216         
    217         return wi_string_with_format(WI_STR("<%s %p>{nick = %@, login = %@, ip = %@}"), 
     217        return wi_string_with_format(WI_STR("<%@ %p>{nick = %@, login = %@, ip = %@}"), 
    218218                wi_runtime_class_name(client), 
    219219                client, 
  • wired/trunk/wired/trackers.c

    r4508 r4576  
    229229        wd_tracker_t            *tracker = instance; 
    230230         
    231         return wi_string_with_format(WI_STR("<%s %p>{host = %@, category = %@, active = %d}"), 
     231        return wi_string_with_format(WI_STR("<%@ %p>{host = %@, category = %@, active = %d}"), 
    232232                wi_runtime_class_name(tracker), 
    233233                tracker, 
  • wired/trunk/wired/transfers.c

    r4568 r4576  
    485485        wd_transfer_t           *transfer = instance; 
    486486         
    487         return wi_string_with_format(WI_STR("<%s %p>{path = %@, client = %@}"), 
     487        return wi_string_with_format(WI_STR("<%@ %p>{path = %@, client = %@}"), 
    488488                wi_runtime_class_name(transfer), 
    489489                transfer,