Changeset 8565a42 in mainline for uspace/drv/test/test3/test3.c


Ignore:
Timestamp:
2018-03-02T20:34:50Z (8 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a1a81f69, d5e5fd1
Parents:
3061bc1 (diff), 34e1206 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-03-02 20:34:50)
git-committer:
GitHub <noreply@…> (2018-03-02 20:34:50)
Message:

Remove all trailing whitespace, everywhere.

See individual commit messages for details.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/test/test3/test3.c

    r3061bc1 r8565a42  
    7070        errno_t rc;
    7171        char *fun_name = NULL;
    72        
     72
    7373        if (asprintf(&fun_name, "%s%zu", base_name, index) < 0) {
    7474                ddf_msg(LVL_ERROR, "Failed to format string: No memory");
     
    7676                goto leave;
    7777        }
    78        
     78
    7979        fun = ddf_fun_create(parent, fun_exposed, fun_name);
    8080        if (fun == NULL) {
     
    9090                goto leave;
    9191        }
    92        
     92
    9393        ddf_fun_add_to_category(fun, class_name);
    9494
     
    9797leave:
    9898        free(fun_name);
    99        
     99
    100100        if ((rc != EOK) && (fun != NULL)) {
    101101                ddf_fun_destroy(fun);
    102102        }
    103        
     103
    104104        *pfun = fun;
    105105        return rc;
     
    149149                }
    150150        }
    151        
     151
    152152        return rc;
    153153}
Note: See TracChangeset for help on using the changeset viewer.