Changeset 5a6cc679 in mainline for uspace/app/loc


Ignore:
Timestamp:
2018-01-31T02:21:24Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a0a9cc2
Parents:
132ab5d1
Message:

Merge commit '50f19b7ee8e94570b5c63896736c4eb49cfa18db' into forwardport

Not all ints are converted to errno_t in xhci tree yet, however it compiles and works :)

File:
1 edited

Legend:

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

    r132ab5d1 r5a6cc679  
    4343#define NAME "loc"
    4444
    45 static int show_cat(const char *cat_name, category_id_t cat_id)
     45static errno_t show_cat(const char *cat_name, category_id_t cat_id)
    4646{
    4747        service_id_t *svc_ids;
     
    4949        char *svc_name;
    5050        char *server_name;
    51         int rc;
     51        errno_t rc;
    5252        size_t j;
    5353
     
    9090}
    9191
    92 static int list_svcs_by_cat(void)
     92static errno_t list_svcs_by_cat(void)
    9393{
    9494        category_id_t *cat_ids;
     
    9797        size_t i;
    9898        char *cat_name;
    99         int rc;
     99        errno_t rc;
    100100
    101101        rc = loc_get_categories(&cat_ids, &cat_cnt);
     
    136136int main(int argc, char *argv[])
    137137{
    138         int rc;
     138        errno_t rc;
    139139        char *cmd;
    140140        char *cat_name;
Note: See TracChangeset for help on using the changeset viewer.