Changeset: 39f868e9ad43 for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/39f868e9ad43
Modified Files:
gdk/gdk_heap.c
Branch: default
Log Message:
Remove superfluous parentheses.
diffs (12 lines):
diff --git a/gdk/gdk_heap.c b/gdk/gdk_heap.c
--- a/gdk/gdk_heap.c
+++ b/gdk/gdk_heap.c
@@ -95,7 +95,7 @@ HEAPgrow(Heap **hp, size_t size, bool ma
ATOMIC_BASE_TYPE refs = ATOMIC_GET(&(*hp)->refs);
if ((refs & HEAPREFS) == 1) {
- return HEAPextend((*hp), size, mayshare);
+ return HEAPextend(*hp, size, mayshare);
}
new = GDKmalloc(sizeof(Heap));
if (new != NULL) {
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]