summaryrefslogtreecommitdiff
path: root/utf8proc.c
diff options
context:
space:
mode:
authorSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:47:24 -0400
committerSteven G. Johnson <stevenj@mit.edu>2014-07-18 11:47:24 -0400
commitdd35a8530d4274ce7c4c0c080a66b283141b9454 (patch)
tree57cfc2da2dfdeca54fa041e1fbe5b9e23a9b1805 /utf8proc.c
parent48645e36e4e07d550cf5f410ec254c7a03937e6a (diff)
downloadlibutf8proc-dd35a8530d4274ce7c4c0c080a66b283141b9454.tar.gz
libutf8proc-dd35a8530d4274ce7c4c0c080a66b283141b9454.tar.bz2
C++/MSVC compatibility, indenting, for #4
Diffstat (limited to 'utf8proc.c')
-rw-r--r--utf8proc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8proc.c b/utf8proc.c
index ef2d433..e6c51f7 100644
--- a/utf8proc.c
+++ b/utf8proc.c
@@ -536,7 +536,7 @@ ssize_t utf8proc_map(
*dstptr = NULL;
result = utf8proc_decompose(str, strlen, NULL, 0, options);
if (result < 0) return result;
- buffer = malloc(result * sizeof(int32_t) + 1);
+ buffer = (int32_t *) malloc(result * sizeof(int32_t) + 1);
if (!buffer) return UTF8PROC_ERROR_NOMEM;
result = utf8proc_decompose(str, strlen, buffer, result, options);
if (result < 0) {
@@ -550,7 +550,7 @@ ssize_t utf8proc_map(
}
{
int32_t *newptr;
- newptr = realloc(buffer, (size_t)result+1);
+ newptr = (int32_t *) realloc(buffer, (size_t)result+1);
if (newptr) buffer = newptr;
}
*dstptr = (uint8_t *)buffer;