aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/more
diff options
context:
space:
mode:
authorJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
committerJake Burkholder <jake@FreeBSD.org>2000-05-23 20:41:01 +0000
commit740a1973a62eaa8e1dc23e22f84dacb3346d303a (patch)
treeacf054a865eef37380f5ac3d3c07766b5bb234b0 /usr.bin/more
parentb4183771fd8ab7a5946fd38df04c1e24b1268bea (diff)
Notes
Diffstat (limited to 'usr.bin/more')
-rw-r--r--usr.bin/more/tags.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/more/tags.c b/usr.bin/more/tags.c
index 4a082e4fca7f..22cdc9327cf4 100644
--- a/usr.bin/more/tags.c
+++ b/usr.bin/more/tags.c
@@ -373,9 +373,9 @@ found:
/*
* The queue of tags generated by the last findgtag() call.
*/
-static CIRCLEQ_HEAD(gtag_q, gtag) gtag_q;
+static CIRCLEQ_HEAD(gtag_q, struct gtag) gtag_q;
struct gtag {
- CIRCLEQ_ENTRY(gtag) ptrs;
+ CIRCLEQ_ENTRY(struct gtag) ptrs;
char *file; /* source file containing the tag */
int line; /* appropriate line number of source file */
};