]> granicus.if.org Git - graphviz/commitdiff
remove now unused parameter to vmopen
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 11 Jul 2020 21:25:04 +0000 (14:25 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 25 Jul 2020 18:53:10 +0000 (11:53 -0700)
lib/expr/exopen.c
lib/vmalloc/vmalloc.h
lib/vmalloc/vmopen.c

index 69b4fa6d032f33614d581ef92d155ae7ead1d221..34d83f37f443e9ce508295a34bdead730fda6b3a 100644 (file)
@@ -42,8 +42,8 @@ exopen(register Exdisc_t* disc)
        program->symdisc.key = offsetof(Exid_t, name);
        if (!(program->symbols = dtopen(&program->symdisc, Dtset)) ||
            !(program->tmp = sfstropen()) ||
-           !(program->vm = vmopen(Vmbest)) ||
-           !(program->ve = vmopen(Vmbest)))
+           !(program->vm = vmopen()) ||
+           !(program->ve = vmopen()))
        {
                exclose(program, 1);
                return 0;
index ed5fb08ce6fe62a5f0d88f13cd8485a4c131f639..93779479784e55067ada461199d8aed8833f2803 100644 (file)
@@ -104,7 +104,7 @@ extern "C" {
     extern Vmalloc_t *Vmheap;  /* heap region                  */
     extern Vmalloc_t *Vmregion;        /* malloc region                */
 
-    extern Vmalloc_t *vmopen(Vmethod_t *);
+    extern Vmalloc_t *vmopen(void);
     extern int vmclose(Vmalloc_t *);
     extern int vmclear(Vmalloc_t *);
 
index 400b6029a6dc9b7dfe89526c34e7a7d39d7437a6..b0fca7646055fffdba2fd449b319def5c00d0946 100644 (file)
 **     Written by Kiem-Phong Vo, kpv@research.att.com, 01/16/94.
 */
 
-/**
- * @param meth ignored
- */
-Vmalloc_t *vmopen(Vmethod_t *meth) {
+Vmalloc_t *vmopen(void) {
   Vmalloc_t *vm;
 
-  (void)meth;
-
   vm = malloc(sizeof(*vm));
   if (vm == NULL) {
     return NULL;