diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 05:31:12 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 05:31:12 +0000 |
commit | 68c9c60b34f48c399c8202a4b19c315318523632 (patch) | |
tree | 65d0a1beb2251e861c506e8247741714eea1410c /usr.bin | |
parent | c7ceba8e025f2c421c5efbb78532f6d6720d9147 (diff) |
knf
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/grep/queue.c | 6 | ||||
-rw-r--r-- | usr.bin/grep/util.c | 15 |
2 files changed, 10 insertions, 11 deletions
diff --git a/usr.bin/grep/queue.c b/usr.bin/grep/queue.c index 8a5341c18f3..12cce5569ed 100644 --- a/usr.bin/grep/queue.c +++ b/usr.bin/grep/queue.c @@ -1,4 +1,4 @@ -/* $OpenBSD: queue.c,v 1.3 2003/06/22 22:38:50 deraadt Exp $ */ +/* $OpenBSD: queue.c,v 1.4 2003/06/25 05:31:11 deraadt Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -63,7 +63,7 @@ free_item(queue_t *item) void enqueue(str_t *x) { - queue_t *item; + queue_t *item; item = grep_malloc(sizeof *item + x->len); item->data.len = x->len; @@ -88,7 +88,7 @@ enqueue(str_t *x) static queue_t * dequeue(void) { - queue_t *item; + queue_t *item; if (q_head == NULL) return NULL; diff --git a/usr.bin/grep/util.c b/usr.bin/grep/util.c index 3cc21a7136a..04fe878bac4 100644 --- a/usr.bin/grep/util.c +++ b/usr.bin/grep/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.9 2003/06/24 22:36:40 millert Exp $ */ +/* $OpenBSD: util.c,v 1.10 2003/06/25 05:31:11 deraadt Exp $ */ /*- * Copyright (c) 1999 James Howard and Dag-Erling Coïdan Smørgrav @@ -55,9 +55,9 @@ static void grep_revstr(unsigned char *, int); int grep_tree(char **argv) { - FTS *fts; - FTSENT *p; - int c, fts_flags; + FTS *fts; + FTSENT *p; + int c, fts_flags; c = fts_flags = 0; @@ -230,8 +230,7 @@ print: } /* - * Returns: -1 on failure - * 0 on success + * Returns: -1 on failure, 0 on success */ int fastcomp(fastgrep_t *fg, const char *pattern) @@ -330,7 +329,7 @@ fastcomp(fastgrep_t *fg, const char *pattern) * wildcards, the position of the last dot effects the maximum shift * distance. * The closer to the end the wild card is the slower the search. A - * reverse version of this algorithm would be useful for wildcards near + * reverse version of this algorithm would be useful for wildcards near * the end of the string. * * Examples: @@ -444,7 +443,7 @@ grep_search(fastgrep_t *fg, unsigned char *data, int dataLen, regmatch_t *pmatch void * grep_malloc(size_t size) { - void *ptr; + void *ptr; if ((ptr = malloc(size)) == NULL) err(1, "malloc"); |