summaryrefslogtreecommitdiffstats
path: root/src/hlog.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2020-02-24 17:05:10 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2020-02-24 17:05:10 (GMT)
commitce35b2f35fae705fa01c236344a19e19a98bde00 (patch)
treecfaedf546ba9a6a9ab6df532fda82e7ae9a0e8ff /src/hlog.c
parent1a4097e55cabfb2b70e0262a73e86629d8a509a7 (diff)
downloadhdf5-ce35b2f35fae705fa01c236344a19e19a98bde00.zip
hdf5-ce35b2f35fae705fa01c236344a19e19a98bde00.tar.gz
hdf5-ce35b2f35fae705fa01c236344a19e19a98bde00.tar.bz2
Change a couple more occurrences of "sink" to "outlet."
Diffstat (limited to 'src/hlog.c')
-rw-r--r--src/hlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hlog.c b/src/hlog.c
index 5606096..e3d1ecf 100644
--- a/src/hlog.c
+++ b/src/hlog.c
@@ -345,11 +345,11 @@ hlog_outlet_register(struct hlog_outlet *ls_arg)
TAILQ_INSERT_TAIL(&hlog_outlets, ls_arg, ls_next);
if (ls == NULL)
return;
- warnx("%s: rendezvous with log-sink '%s'", __func__,
+ warnx("%s: rendezvous with log-outlet '%s'", __func__,
ls->ls_name);
ls_arg->ls_state = ls->ls_state;
TAILQ_REMOVE(&hlog_outlets, ls, ls_next);
hlog_outlet_destroy(ls);
} else
- warnx("%s: duplicate log-sink, '%s'", __func__, ls->ls_name);
+ warnx("%s: duplicate log-outlet, '%s'", __func__, ls->ls_name);
}