summaryrefslogtreecommitdiff
path: root/src/cut.c
diff options
context:
space:
mode:
authorPádraig Brady <P@draigBrady.com>2014-03-07 23:56:20 +0000
committerPádraig Brady <P@draigBrady.com>2014-04-05 01:59:39 +0100
commitd695bc8bc60698bdcc07f9ab8c649a77383bcc85 (patch)
treec7b49bbb38313028df5675d7ba64198d6fee4a8a /src/cut.c
parentb85eb8d6835e7665bf6151db070261b123c22f95 (diff)
downloadcoreutils-d695bc8bc60698bdcc07f9ab8c649a77383bcc85.tar.xz
maint: various cleanups
* tests/misc/numfmt.pl: Fix comment misspelling. * src/cut.c: Likewise. * src/tsort.c (detect_loop): Replace an fprintf() with error().
Diffstat (limited to 'src/cut.c')
-rw-r--r--src/cut.c2
1 files changed, 1 insertions, 1 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;