From: Dave H. <hel...@us...> - 2013-06-27 04:31:08
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "sfcb - Small Footprint CIM Broker". The branch, master has been updated via ffece1fc94b2dab4370ed6a37053809be99c2fbc (commit) from 09017b9e944a7d5c8387dc92c4bc96ac14436382 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit ffece1fc94b2dab4370ed6a37053809be99c2fbc Author: Dave Heller <hel...@us...> Date: Thu Jun 27 00:30:42 2013 -0400 [sfcb-tix:#11] replace an inadvertently removed cast ----------------------------------------------------------------------- Summary of changes: providerRegister.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/providerRegister.c b/providerRegister.c index 1ad0904..9930046 100644 --- a/providerRegister.c +++ b/providerRegister.c @@ -159,7 +159,7 @@ newProviderRegister() struct passwd *passwd; ProviderRegister *br = malloc(sizeof(*br) + sizeof(ProviderBase)); - ProviderBase *bb = (br + 1); + ProviderBase *bb = (ProviderBase *) (br + 1); setupControl(configfile); hooks/post-receive -- sfcb - Small Footprint CIM Broker |