diff options
author | Craig Tiller <ctiller@google.com> | 2016-03-17 08:13:39 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-03-17 08:13:39 -0700 |
commit | ec8eef42b8fea88c7f0c509c3734db4f6bd0049f (patch) | |
tree | 54e3b9498e6bc317544a8f19831ca26519455f0d /src/core/support/alloc.c | |
parent | 1e53411e04808eaa851a24dc8885b9a31fd12585 (diff) | |
parent | 0239ba8ebf20b3f1cf454ccbf8d9a3800ac9b8c9 (diff) |
Merge branch 'cleaner-posix2' into cleaner-posix3
Diffstat (limited to 'src/core/support/alloc.c')
-rw-r--r-- | src/core/support/alloc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/support/alloc.c b/src/core/support/alloc.c index 0a064b2c18..b99584bd20 100644 --- a/src/core/support/alloc.c +++ b/src/core/support/alloc.c @@ -1,6 +1,6 @@ /* * - * Copyright 2015, Google Inc. + * Copyright 2015-2016, Google Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -87,4 +87,4 @@ void *gpr_malloc_aligned(size_t size, size_t alignment_log) { return (void *)ret; } -void gpr_free_aligned(void *ptr) { free(((void **)ptr)[-1]); } +void gpr_free_aligned(void *ptr) { gpr_free(((void **)ptr)[-1]); } |