- Timestamp:
- 2008-02-11T23:16:23Z (15 years ago)
- Branches:
- master
- Children:
- e2b15bb
- Parents:
- 8bd697c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
query.c
r8bd697c r5f4eede 148 148 irc_usermsg( irc, "Accepted: %s", q->question ); 149 149 if(q->yes) 150 q->yes( q->ic ? q->ic :irc, q->data );150 q->yes( q->ic ? (gpointer)q->ic : (gpointer)irc, q->data ); 151 151 } 152 152 else … … 157 157 irc_usermsg( irc, "Rejected: %s", q->question ); 158 158 if(q->no) 159 q->no( q->ic ? q->ic :irc, q->data );159 q->no( q->ic ? (gpointer)q->ic : (gpointer)irc, q->data ); 160 160 } 161 161 q->data = NULL;
Note: See TracChangeset
for help on using the changeset viewer.