Skip to content

Commit

Permalink
add another sqInt inconsistency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
krono committed Sep 5, 2016
1 parent 77dc78f commit 2a8ea3b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion platforms/Mac OS/plugins/SqueakSSL/sqMacSSL.c
Expand Up @@ -632,7 +632,7 @@ sqInt sqSetStringPropertySSL(sqInt handle, int propID, char* propName,
propID - the property id to retrieve
Returns: The integer value of the property.
*/
int sqGetIntPropertySSL(sqInt handle, int propID)
sqInt sqGetIntPropertySSL(sqInt handle, int propID)
{
sqSSL* ssl = sqSSLFromHandle(handle);

Expand Down
2 changes: 1 addition & 1 deletion platforms/iOS/plugins/SqueakSSL/sqMacSSL.c
Expand Up @@ -632,7 +632,7 @@ sqInt sqSetStringPropertySSL(sqInt handle, int propID, char* propName,
propID - the property id to retrieve
Returns: The integer value of the property.
*/
int sqGetIntPropertySSL(sqInt handle, int propID)
sqInt sqGetIntPropertySSL(sqInt handle, int propID)
{
sqSSL* ssl = sqSSLFromHandle(handle);

Expand Down

0 comments on commit 2a8ea3b

Please sign in to comment.