diff options
author | Guillem Jover <guillem@debian.org> | 2012-03-21 18:13:08 +0100 |
---|---|---|
committer | Guillem Jover <guillem@debian.org> | 2012-03-27 20:09:50 +0200 |
commit | f5896a20bfbdb4dcb93d2aec0d350507d44e8445 (patch) | |
tree | 1f0e1fc71073fbff8ce14bc740f4391a79d15310 /dpkg-split | |
parent | f2ccc3a00f241afdf030718758a3ce0cb7e7428f (diff) | |
download | dpkg-f5896a20bfbdb4dcb93d2aec0d350507d44e8445.tar.gz |
Mark enum and struct member comments as doxygen descriptions
Diffstat (limited to 'dpkg-split')
-rw-r--r-- | dpkg-split/dpkg-split.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dpkg-split/dpkg-split.h b/dpkg-split/dpkg-split.h index 2f7387e9f..ceb9be994 100644 --- a/dpkg-split/dpkg-split.h +++ b/dpkg-split/dpkg-split.h @@ -40,7 +40,7 @@ struct partinfo { off_t maxpartlen; off_t thispartoffset; off_t thispartlen; - /* Size of header in part file. */ + /** Size of header in part file. */ off_t headerlen; off_t filesize; }; @@ -48,7 +48,7 @@ struct partinfo { struct partqueue { struct partqueue *nextinqueue; - /* Only fields filename, md5sum, maxpartlen, thispartn, maxpartn + /** Only fields filename, md5sum, maxpartlen, thispartn, maxpartn * are valid; the rest are NULL. If the file is not named correctly * to be a part file md5sum is NULL too and the numbers are zero. */ struct partinfo info; |