]> andersk Git - splint.git/blobdiff - src/ctype.c
- library fixes:
[splint.git] / src / ctype.c
index d246bf763fa419ea8f064924986492f371f74466..7fc16c481bef2841d0c72adcb6db297c3b9fac9f 100644 (file)
@@ -1998,13 +1998,14 @@ ctype_getBaseType (ctype c)
 }
 
 ctype
-ctype_adjustPointers (int np, ctype c)
+ctype_adjustPointers (pointers p, ctype c)
 {
-  
+  int np = pointers_depth (p);
+
   if (ctype_isFunction (c))
     {
       c = ctype_makeParamsFunction
-        (ctype_adjustPointers (np, ctype_getReturnType (c)),
+        (ctype_adjustPointers (p, ctype_getReturnType (c)),
         uentryList_copy (ctype_argsFunction (c)));
     }
   else
This page took 0.03361 seconds and 4 git commands to generate.