Changeset fc630f9 for irc_commands.c


Ignore:
Timestamp:
2006-05-23T08:31:04Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
1c8a7a2, 601e813, 936ded6
Parents:
a9ca7dd
Message:

Silenced all compiler warnings that appeared after previous commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_commands.c

    ra9ca7dd rfc630f9  
    385385                       
    386386                        if( u && u->online )
    387                                 irc_reply( irc, 604, "%s %s %s %d :%s", u->nick, u->user, u->host, time( NULL ), "is online" );
     387                                irc_reply( irc, 604, "%s %s %s %d :%s", u->nick, u->user, u->host, (int) time( NULL ), "is online" );
    388388                        else
    389                                 irc_reply( irc, 605, "%s %s %s %d :%s", nick, "*", "*", time( NULL ), "is offline" );
     389                                irc_reply( irc, 605, "%s %s %s %d :%s", nick, "*", "*", (int) time( NULL ), "is offline" );
    390390                }
    391391                else if( cmd[i][0] == '-' )
Note: See TracChangeset for help on using the changeset viewer.