Skip to content

Commit

Permalink
add missed const from related files
Browse files Browse the repository at this point in the history
  • Loading branch information
krono committed Sep 5, 2016
1 parent 226939a commit ceb1a98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platforms/iOS/plugins/SqueakSSL/sqMacSSL.c
Expand Up @@ -288,7 +288,7 @@ sqInt sqCreateSSL(void)
}

if (handle >= handleMax) {
int delta = 100;
const int delta = 100;
/* Resize the handle buffer */
handleBuf = (sqSSL**)realloc(handleBuf,
(handleMax + delta) * sizeof(sqSSL*));
Expand Down

0 comments on commit ceb1a98

Please sign in to comment.