Changeset cde999a in mainline for uspace/app/mkmfs/mkmfs.c


Ignore:
Timestamp:
2018-01-04T20:22:51Z (6 years ago)
Author:
Jiří Zárevúcky <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
3d95c9d, 84a1a54
Parents:
3c7702c0
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 19:18:29)
git-committer:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-04 20:22:51)
Message:

Fix comments to stop referring to error codes as negative.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/mkmfs/mkmfs.c

    r3c7702c0 rcde999a  
    290290 * @param sb            Pointer to the superblock structure.
    291291 *
    292  * @return              EOK on success or a negative error code.
     292 * @return              EOK on success or an error code.
    293293 */
    294294static int insert_dentries(const struct mfs_sb_info *sb)
     
    343343 * @param sb            Pointer to the superblock structure.
    344344 *
    345  * @return              EOK on success or a negative error code.
     345 * @return              EOK on success or an error code.
    346346 */
    347347static int init_inode_table(const struct mfs_sb_info *sb)
     
    376376 * @param sb            Ponter to the superblock structure.
    377377 *
    378  * @return              EOK on success or a negative error code.
     378 * @return              EOK on success or an error code.
    379379 */
    380380static int make_root_ino(const struct mfs_sb_info *sb)
     
    413413 * @param sb            Pointer to the superblock structure.
    414414 *
    415  * @return              EOK on success or a negative error code.
     415 * @return              EOK on success or an error code.
    416416 */
    417417static int make_root_ino2(const struct mfs_sb_info *sb)
     
    452452 * @param sb            Pointer to the superblock structure.
    453453 *
    454  * @return              EOK on success or a negative error code.
     454 * @return              EOK on success or an error code.
    455455 */
    456456static int init_superblock(struct mfs_sb_info *sb)
     
    559559 * @param sbi           Pointer to the superblock structure to write on disk.
    560560 *
    561  * @return              EOK on success or a negative error code.
     561 * @return              EOK on success or an error code.
    562562 */
    563563static int write_superblock(const struct mfs_sb_info *sbi)
     
    592592 * @param sbi           Pointer to the superblock structure to write on disk.
    593593 *
    594  * @return              EOK on success or a negative error code.
     594 * @return              EOK on success or an error code.
    595595 */
    596596static int write_superblock3(const struct mfs_sb_info *sbi)
     
    625625 * @param sb            Pointer to the superblock structure.
    626626 *
    627  * @return              EOK on success or a negative error code.
     627 * @return              EOK on success or an error code.
    628628 */
    629629static int init_bitmaps(const struct mfs_sb_info *sb)
     
    699699 * @param data          Pointer to the block content.
    700700 *
    701  * @return              EOK on success or a negative error number.
     701 * @return              EOK on success or a error number.
    702702 */
    703703static inline int write_block(aoff64_t off, size_t size, const void *data)
Note: See TracChangeset for help on using the changeset viewer.