diff options
author | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-25 13:49:06 +0000 |
---|---|---|
committer | sje <sje@4f64403b-2f21-0410-a795-97e2b3489a10> | 2007-04-25 13:49:06 +0000 |
commit | a44175dd565f39990ef57719313ef3a88a8d01b6 (patch) | |
tree | 957b9c8c58f21854450780bc2f29b1e0961dafdf /metacontacts/edit.c | |
parent | 3224f00e30979b51332dac42c8652af0b2c0c748 (diff) |
rebuilds for beta release - added some updater compatibility, and more GUIDs for 0.8
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@144 4f64403b-2f21-0410-a795-97e2b3489a10
Diffstat (limited to 'metacontacts/edit.c')
-rw-r--r-- | metacontacts/edit.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/metacontacts/edit.c b/metacontacts/edit.c index 37cd8a1..2ff323e 100644 --- a/metacontacts/edit.c +++ b/metacontacts/edit.c @@ -120,10 +120,11 @@ void FillContactList(HWND hWndDlg, CHANGES *chg) { sprintf(buff,"%d",dbv.wVal);
break;
case DBVT_DWORD:
- sprintf(buff,"%d",dbv.dVal);
+ sprintf(buff,"%d",(int)dbv.dVal);
break;
default:
- sprintf(buff,"");
+ //sprintf(buff,"");
+ buff[0] = 0;
}
DBFreeVariant(&dbv);
|