Changes in uspace/app/loc/loc.c [b7fd2a0:7354b5e] in mainline


Ignore:
File:
1 edited

Legend:

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

    rb7fd2a0 r7354b5e  
    4343#define NAME "loc"
    4444
    45 static errno_t show_cat(const char *cat_name, category_id_t cat_id)
     45static int 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         errno_t rc;
     51        int rc;
    5252        size_t j;
    5353
     
    9090}
    9191
    92 static errno_t list_svcs_by_cat(void)
     92static int list_svcs_by_cat(void)
    9393{
    9494        category_id_t *cat_ids;
     
    9797        size_t i;
    9898        char *cat_name;
    99         errno_t rc;
     99        int rc;
    100100
    101101        rc = loc_get_categories(&cat_ids, &cat_cnt);
     
    136136int main(int argc, char *argv[])
    137137{
    138         errno_t rc;
     138        int rc;
    139139        char *cmd;
    140140        char *cat_name;
Note: See TracChangeset for help on using the changeset viewer.