]> granicus.if.org Git - graphviz/commitdiff
agbindrec: realign parameter names in prototype with definition
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Tue, 10 Aug 2021 01:43:47 +0000 (18:43 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Fri, 13 Aug 2021 14:50:45 +0000 (07:50 -0700)
The C compiler does not care if these names mismatch, but it is less confusing
to be consistent. This change leaves the obj/arg_obj discrepancy alone under the
justification that "arg_obj" is not any more useful externally-facing and "obj"
internally would conflict with an already existing local.

lib/cgraph/cgraph.h
lib/cgraph/rec.c

index 3ca6c3559dfab165fa227a5a08ff9448a8099874..46171eb846dbee099dedaac9f226d4f62d4263b0 100644 (file)
@@ -340,7 +340,7 @@ CGRAPH_API Agsym_t *agattrsym(void *obj, char *name);
 CGRAPH_API Agsym_t *agnxtattr(Agraph_t * g, int kind, Agsym_t * attr);
 CGRAPH_API int      agcopyattr(void *oldobj, void *newobj);
 
-CGRAPH_API void *agbindrec(void *obj, const char *name, unsigned int size,
+CGRAPH_API void *agbindrec(void *obj, const char *name, unsigned int recsize,
                       int move_to_front);
 CGRAPH_API Agrec_t *aggetrec(void *obj, const char *name, int move_to_front);
 CGRAPH_API int agdelrec(void *obj, char *name);
index f6458fbe7664acfb7fb04b535aaadedf20411a05..188819667c69eb1d017c8773b6670dae447ab13e 100644 (file)
@@ -85,7 +85,7 @@ static void objputrec(Agraph_t * g, Agobj_t * obj, void *arg)
 /* attach a new record of the given size to the object.
  */
 void *agbindrec(void *arg_obj, const char *recname, unsigned int recsize,
-               int mtf)
+                int move_to_front)
 {
     Agraph_t *g;
     Agobj_t *obj;
@@ -99,7 +99,7 @@ void *agbindrec(void *arg_obj, const char *recname, unsigned int recsize,
        rec->name = agstrdup(g, recname);
        objputrec(g, obj, rec);
     }
-    if (mtf)
+    if (move_to_front)
        aggetrec(arg_obj, recname, TRUE);
     return rec;
 }