Ignore:
Timestamp:
2018-05-22T10:36:58Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a4eb3ba2
Parents:
4f8772d4
git-author:
Jiri Svoboda <jiri@…> (2018-05-21 17:36:30)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-22 10:36:58)
Message:

Fix remaining ccheck issues.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/builtin/bi_error.c

    r4f8772d4 r904b1bc  
    4848
    4949        builtin_code_snippet(bi,
    50                 "class Error is\n"
    51                         /* Common ancestor of all error classes */
    52                         "class Base is\n"
    53                         "end\n"
    54                         /* Accessing nil reference */
    55                         "class NilReference : Base is\n"
    56                         "end\n"
    57                         /* Array index out of bounds */
    58                         "class OutOfBounds : Base is\n"
    59                         "end\n"
    60                 "end\n");}
     50            "class Error is\n"
     51            "    -- Common ancestor of all error classes\n"
     52            "    class Base is\n"
     53            "    end\n"
     54            "    -- Accessing nil reference\n"
     55            "    class NilReference : Base is\n"
     56            "    end\n"
     57            "    -- Array index out of bounds\n"
     58            "    class OutOfBounds : Base is\n"
     59            "    end\n"
     60            "end\n");
     61}
    6162
    6263/** Bind error class hierarchy.
Note: See TracChangeset for help on using the changeset viewer.