@@@ man wip
[mLib] / test / tvec-types.c
index 20c2930..87748eb 100644 (file)
@@ -3516,18 +3516,18 @@ const struct tvec_regty tvty_buffer = {
 /* --- @tvec_initbuffer@ --- *
  *
  * Arguments:  @union tvec_regval *rv@ = register value
- *             @const union tvec_regval *src@ = source buffer
+ *             @const union tvec_regval *ref@ = source buffer
  *             @size_t sz@ = size to allocate
  *
  * Returns:    ---
  *
- * Use:                Initialize the alignment parameters in @rv@ to match @src@,
+ * Use:                Initialize the alignment parameters in @rv@ to match @ref@,
  *             and the size to @sz@.
  */
 
 void tvec_initbuffer(union tvec_regval *rv,
-                    const union tvec_regval *src, size_t sz)
-  { rv->buf.sz = sz; rv->buf.a = src->buf.a; rv->buf.m = src->buf.m; }
+                    const union tvec_regval *ref, size_t sz)
+  { rv->buf.sz = sz; rv->buf.a = ref->buf.a; rv->buf.m = ref->buf.m; }
 
 /* --- @tvec_allocbuffer@ --- *
  *