summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2008-12-02 23:42:21 +0000
committerRoger Dingledine <arma@torproject.org>2008-12-02 23:42:21 +0000
commit96a185d9b79055de7fa2c9a6df4ca375d0308cb4 (patch)
tree508112e460e033a772e00f6ca33d1ae02f67f81c
parentbd6b3072f902d11f969914c997533c7584f263d5 (diff)
downloadtor-96a185d9b79055de7fa2c9a6df4ca375d0308cb4.tar.gz
tor-96a185d9b79055de7fa2c9a6df4ca375d0308cb4.zip
style cleanup
svn:r17457
-rw-r--r--src/common/compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/compat.c b/src/common/compat.c
index a54fded833..fcc57f60db 100644
--- a/src/common/compat.c
+++ b/src/common/compat.c
@@ -590,7 +590,7 @@ tor_lockfile_unlock(tor_lockfile_t *lockfile)
#define SEEK_END 2
#endif
-/** Return the position of fd with respect to the start of the file */
+/** Return the position of <b>fd</b> with respect to the start of the file. */
off_t
tor_fd_getpos(int fd)
{
@@ -601,7 +601,7 @@ tor_fd_getpos(int fd)
#endif
}
-/** Move fd to the end of the file. Return -1 on error, 0 on success. */
+/** Move <b>fd</b> to the end of the file. Return -1 on error, 0 on success. */
int
tor_fd_seekend(int fd)
{