summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cut.c2
-rw-r--r--src/tsort.c3
2 files changed, 2 insertions, 3 deletions
diff --git a/src/cut.c b/src/cut.c
index b659a2b0c..552806823 100644
--- a/src/cut.c
+++ b/src/cut.c
@@ -417,7 +417,7 @@ set_fields (const char *fieldstr)
/* After merging, reallocate RP so we release memory to the system.
Also add a sentinel at the end of RP, to avoid out of bounds access
- and for perfomance reasons. */
+ and for performance reasons. */
++n_rp;
rp = xrealloc (rp, n_rp * sizeof (struct range_pair));
rp[n_rp - 1].lo = rp[n_rp - 1].hi = SIZE_MAX;
diff --git a/src/tsort.c b/src/tsort.c
index fb5ff296f..661c71730 100644
--- a/src/tsort.c
+++ b/src/tsort.c
@@ -347,8 +347,7 @@ detect_loop (struct item *k)
{
struct item *tmp = loop->qlink;
- fprintf (stderr, "%s: %s\n", program_name,
- loop->str);
+ error (0, 0, "%s", loop->str);
/* Until we encounter K again. */
if (loop == k)