diff options
Diffstat (limited to 'metacontacts/meta_utils.c')
-rw-r--r-- | metacontacts/meta_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/metacontacts/meta_utils.c b/metacontacts/meta_utils.c index 22d6228..f844f99 100644 --- a/metacontacts/meta_utils.c +++ b/metacontacts/meta_utils.c @@ -828,7 +828,7 @@ int Meta_SetHandles(void) { } else {
char buff[256];
// problem - contact number is greater than meta's number of contacts
- sprintf(buff, "Subcontact contact number (%d) > meta num contacts (%d) - deleting MetaContact", contact_number, num_contacts);
+ sprintf(buff, "Subcontact contact number (%d) > meta num contacts (%d) - deleting MetaContact", (int)contact_number, (int)num_contacts);
MessageBox(0, buff, nick_buffer, MB_OK | MB_ICONERROR);
//CallService(MS_DB_CONTACT_DELETE, (WPARMA)hContact, 0);
hNextContact = ( HANDLE )CallService( MS_DB_CONTACT_FINDNEXT,( WPARAM )hContact, 0 );
|