summaryrefslogtreecommitdiff
path: root/sed/sed.h
diff options
context:
space:
mode:
authorClint Adams <clint@debian.org>2017-02-04 10:14:44 -0500
committerClint Adams <clint@debian.org>2017-02-04 10:29:57 -0500
commita2a4f555c44abda322dabcdf570401434caa52f2 (patch)
tree0ecaeee14d787bf89c309645f97dfa9b23be79ac /sed/sed.h
parent815ec1bf6545c1b2650a467af09b61213ef4895e (diff)
New upstream version 4.4
Diffstat (limited to 'sed/sed.h')
-rw-r--r--sed/sed.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sed/sed.h b/sed/sed.h
index 0d056e3..7510b0a 100644
--- a/sed/sed.h
+++ b/sed/sed.h
@@ -1,5 +1,5 @@
/* GNU SED, a batch stream editor.
- Copyright (C) 1989-2016 Free Software Foundation, Inc.
+ Copyright (C) 1989-2017 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@
/* Struct vector is used to describe a compiled sed program. */
struct vector {
struct sed_cmd *v; /* a dynamically allocated array */
- size_t v_allocated; /* ... number slots allocated */
+ size_t v_allocated; /* ... number of slots allocated */
size_t v_length; /* ... number of slots in use */
};