Fixed name clashes with windows.h

This commit is contained in:
James Booth
2012-12-11 23:58:54 +00:00
parent 253eb453f2
commit 803eacc488
4 changed files with 8 additions and 8 deletions

View File

@@ -127,7 +127,7 @@ prof_handle_incoming_message(char *from, char *message, gboolean priv)
char *short_from = strtok(from_cpy, "/");
const char *jid = jabber_get_jid();
chat_log_chat(jid, short_from, message, IN, NULL);
chat_log_chat(jid, short_from, message, PROF_IN_LOG, NULL);
}
}
@@ -144,7 +144,7 @@ prof_handle_delayed_message(char *from, char *message, GTimeVal tv_stamp,
char *short_from = strtok(from_cpy, "/");
const char *jid = jabber_get_jid();
chat_log_chat(jid, short_from, message, IN, &tv_stamp);
chat_log_chat(jid, short_from, message, PROF_IN_LOG, &tv_stamp);
}
}