Changeset ae7d03c in mainline for uspace/app/sbi


Ignore:
Timestamp:
2018-05-10T13:39:19Z (8 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e8975278
Parents:
b277bef
git-author:
Jiri Svoboda <jiri@…> (2018-05-10 07:38:12)
git-committer:
Jiri Svoboda <jiri@…> (2018-05-10 13:39:19)
Message:

Selected ccheck-proposed comment fixes.

Location:
uspace/app/sbi/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/input.c

    rb277bef rae7d03c  
    103103 *
    104104 * @return              EOK on success, ENOENT when opening file fails.
    105 */
     105 */
    106106static errno_t input_init_file(input_t *input, const char *fname)
    107107{
  • uspace/app/sbi/src/run_expr.c

    rb277bef rae7d03c  
    805805 * @param v2            Value of second argument
    806806 * @param res           Place to store result
    807 */
     807 */
    808808static void run_binop_char(run_t *run, stree_binop_t *binop, rdata_value_t *v1,
    809809    rdata_value_t *v2, rdata_item_t **res)
     
    878878 * @param v2            Value of second argument
    879879 * @param res           Place to store result
    880 */
     880 */
    881881static void run_binop_int(run_t *run, stree_binop_t *binop, rdata_value_t *v1,
    882882    rdata_value_t *v2, rdata_item_t **res)
     
    25772577 * @param assign        Assignment expression
    25782578 * @param res           Place to store result
    2579 */
     2579 */
    25802580static void run_assign(run_t *run, stree_assign_t *assign, rdata_item_t **res)
    25812581{
  • uspace/app/sbi/src/stype_expr.c

    rb277bef rae7d03c  
    916916 * @param unop          Unary operation
    917917 * @param rtitem        Place to store result type
    918 */
     918 */
    919919static void stype_unop(stype_t *stype, stree_unop_t *unop,
    920920    tdata_item_t **rtitem)
     
    11911191 * @param arg_ti        Base type
    11921192 * @param rtitem        Place to store result type
    1193 */
     1193 */
    11941194static void stype_access_tobject(stype_t *stype, stree_access_t *access,
    11951195    tdata_item_t *arg_ti, tdata_item_t **rtitem)
     
    13491349 * @param arg_ti        Base type
    13501350 * @param rtitem        Place to store result type
    1351 */
     1351 */
    13521352static void stype_access_tebase(stype_t *stype, stree_access_t *access,
    13531353    tdata_item_t *arg_ti, tdata_item_t **rtitem)
     
    18401840        ptitem = box->arg->titem;
    18411841
    1842         /* Make compiler happy. */
     1842        /* Make compiler happy. */
    18431843        csi_sym = NULL;
    18441844
Note: See TracChangeset for help on using the changeset viewer.