diff options
author | George Hazan <george.hazan@gmail.com> | 2016-08-25 20:34:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-08-25 20:34:30 +0000 |
commit | 9da1bf03fb556a1dc879431da3bc7ce2bc57811b (patch) | |
tree | 22dbddd9c541fc0b9136752fa42e838f1ab06925 /include/delphi | |
parent | 44c47e4b9d6c532cc3e6cf2bcf9b5090396d844e (diff) |
warning fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@17208 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/delphi')
-rw-r--r-- | include/delphi/m_contacts.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/delphi/m_contacts.inc b/include/delphi/m_contacts.inc index e6636c2e17..b8af21d0ce 100644 --- a/include/delphi/m_contacts.inc +++ b/include/delphi/m_contacts.inc @@ -74,6 +74,6 @@ const CNF_DISPLAYNC = 17;
// result must be freed using mir_free
-function Contact_GetInfo(iType:Integer; hContact:TMCONTACT; proto:PAnsiChar=0) : PWideChar; stdcall; external AppDLL;
+function Contact_GetInfo(iType:Integer; hContact:TMCONTACT; proto:PAnsiChar=nil) : PWideChar; stdcall; external AppDLL;
{$ENDIF}
|