diff options
author | Chris Dunlap <[email protected]> | 2014-09-10 14:22:39 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2014-09-22 12:17:53 -0700 |
commit | 5043deaa4077fc4bf748469fc8e89a422c7a5aef (patch) | |
tree | 43fec0a13cbe81895cb5dc0df95dda135ef2eae2 /cmd/zed/zed_strings.c | |
parent | 6d9036f35049f0917748c89114bac58a5029e989 (diff) |
Remove reverse indentation from zed comments.
Remove all occurrences of reverse indentation from zed comments for
consistency within the project code base.
Signed-off-by: Chris Dunlap <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Closes #2695
Diffstat (limited to 'cmd/zed/zed_strings.c')
-rw-r--r-- | cmd/zed/zed_strings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/zed/zed_strings.c b/cmd/zed/zed_strings.c index 05a374055..9b55d0346 100644 --- a/cmd/zed/zed_strings.c +++ b/cmd/zed/zed_strings.c @@ -47,8 +47,7 @@ typedef struct zed_strings_node zed_strings_node_t; /* * Compare zed_strings_node_t nodes [x1] and [x2]. - * As required for the AVL tree, return exactly - * -1 for <, 0 for ==, and +1 for >. + * As required for the AVL tree, return -1 for <, 0 for ==, and +1 for >. */ static int _zed_strings_node_compare(const void *x1, const void *x2) @@ -118,6 +117,7 @@ zed_strings_destroy(zed_strings_t *zsp) /* * Add a copy of the string [s] to the container [zsp]. * Return 0 on success, or -1 on error. + * * FIXME: Handle dup strings. */ int |