Commit a281a106 authored by Dag Haavi Finstad's avatar Dag Haavi Finstad

Fix vmod priv doc typo.

Spotted by: gquintard
parent ffc2b8e2
......@@ -283,7 +283,7 @@ malloc would look like this::
if (priv->priv == NULL) {
priv->priv = calloc(sizeof(struct myfoo), 1);
AN(priv->priv);
priv->priv = free; /* free(3) */
priv->free = free; /* free(3) */
mystate = priv->priv;
mystate->foo = 21;
...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment