Changeset cde999a in mainline for uspace/srv/fs/exfat/exfat_fat.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/srv/fs/exfat/exfat_fat.c

    r3c7702c0 rcde999a  
    7171 * @param max_clusters  Maximum number of clusters to visit.
    7272 *
    73  * @return              EOK on success or a negative error code.
     73 * @return              EOK on success or an error code.
    7474 */
    7575int
     
    120120 * @param flags         Flags passed to libblock.
    121121 *
    122  * @return              EOK on success or a negative error code.
     122 * @return              EOK on success or an error code.
    123123 */
    124124int
     
    184184 * @param flags         Flags passed to libblock.
    185185 *
    186  * @return              EOK on success or a negative error code.
     186 * @return              EOK on success or an error code.
    187187 */
    188188int
     
    227227 * @param value         Output argument holding the value of the cluster.
    228228 *
    229  * @return              EOK or a negative error code.
     229 * @return              EOK or an error code.
    230230 */
    231231int
     
    257257 * @param value         Value to set the cluster with.
    258258 *
    259  * @return              EOK on success or a negative error code.
     259 * @return              EOK on success or an error code.
    260260 */
    261261int
     
    295295 *                      will be returned.
    296296 *
    297  * @return              EOK on success, a negative error code otherwise.
     297 * @return              EOK on success, an error code otherwise.
    298298 */
    299299int
     
    361361 * @param firstc        First cluster in the chain which is to be freed.
    362362 *
    363  * @return              EOK on success or a negative return code.
     363 * @return              EOK on success or an error code.
    364364 */
    365365int
     
    394394 * @param lcl           Last cluster of the cluster chain to append.
    395395 *
    396  * @return              EOK on success or a negative error code.
     396 * @return              EOK on success or an error code.
    397397 */
    398398int
     
    438438 *                      be chopped off.
    439439 *
    440  * @return              EOK on success or a negative return code.
     440 * @return              EOK on success or an error code.
    441441 */
    442442int exfat_chop_clusters(exfat_bs_t *bs, exfat_node_t *nodep, exfat_cluster_t lcl)
Note: See TracChangeset for help on using the changeset viewer.