aboutsummaryrefslogtreecommitdiffstats
path: root/include/iobuf.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/iobuf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/iobuf.h b/include/iobuf.h
index b6e5303da..0e3584c18 100644
--- a/include/iobuf.h
+++ b/include/iobuf.h
@@ -135,10 +135,10 @@ void iobuf_set_partial_block_mode( IOBUF a, size_t len );
int iobuf_translate_file_handle ( int fd, int for_write );
-/* get a byte form the iobuf; must check for eof prior to this function
- * this function returns values in the range 0 .. 255 or -1 to indicate EOF
+/* Get a byte form the iobuf; must check for eof prior to this function.
+ * This function returns values in the range 0 .. 255 or -1 to indicate EOF
* iobuf_get_noeof() does not return -1 to indicate EOF, but masks the
- * returned value to be in the range 0 ..255.
+ * returned value to be in the range 0..255.
*/
#define iobuf_get(a) \
( ((a)->nofast || (a)->d.start >= (a)->d.len )? \