X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/blobdiff_plain/74738c0fa6a63f888fa6fb0758c9ad438d47a700..f9264521e093e570a8831d5238ccc3bc20e01119:/src/qtype.c diff --git a/src/qtype.c b/src/qtype.c index 389f0dc..19df773 100644 --- a/src/qtype.c +++ b/src/qtype.c @@ -210,12 +210,15 @@ qtype qtype_newQbase (qtype q1, qtype q2) return q1; } -void qtype_adjustPointers (int n, qtype q) +void qtype_adjustPointers (pointers n, qtype q) { if (qtype_isDefined (q)) { + DPRINTF (("Pointers: %s %s", pointers_unparse (n), qtype_unparse (q))); q->type = ctype_adjustPointers (n, q->type); } + + pointers_free (n); } # ifndef NOLCL