Fix integer types in #1114

This commit is contained in:
Ian Bell
2016-06-08 07:30:28 -06:00
parent afeca6a8b2
commit c16a4b64f5
2 changed files with 2 additions and 2 deletions

View File

@@ -366,7 +366,7 @@
* @param buffer_length The length of the buffer for the error code
* @return
*/
EXPORT_CODE void CONVENTION AbstractState_set_binary_interaction_double(const long handle, const size_t i, const size_t j, const char* parameter, const double value, long *errcode, char *message_buffer, const long buffer_length);
EXPORT_CODE void CONVENTION AbstractState_set_binary_interaction_double(const long handle, const long i, const long j, const char* parameter, const double value, long *errcode, char *message_buffer, const long buffer_length);
// *************************************************************************************
// *************************************************************************************

View File

@@ -648,7 +648,7 @@ EXPORT_CODE void CONVENTION AbstractState_update_and_5_out(const long handle, co
}
}
EXPORT_CODE void CONVENTION AbstractState_set_binary_interaction_double(const long handle, const size_t i, const size_t j, const char* parameter, const double value, long *errcode, char *message_buffer, const long buffer_length)
EXPORT_CODE void CONVENTION AbstractState_set_binary_interaction_double(const long handle, const long i, const long j, const char* parameter, const double value, long *errcode, char *message_buffer, const long buffer_length)
{
*errcode = 0;
try {