Changeset 0e80e40 in mainline for uspace/app/nav/nav.c


Ignore:
Timestamp:
2021-10-25T00:32:45Z (3 years ago)
Author:
jxsvoboda <5887334+jxsvoboda@…>
Branches:
master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9f7e9bb
Parents:
61784ed
git-author:
Jiri Svoboda <jiri@…> (2021-10-07 17:17:36)
git-committer:
jxsvoboda <5887334+jxsvoboda@…> (2021-10-25 00:32:45)
Message:

Read and display directory contents

File:
1 edited

Legend:

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

    r61784ed r0e80e40  
    136136                if (rc != EOK) {
    137137                        printf("Error adding control to layout.\n");
    138                         return rc;
     138                        goto error;
     139                }
     140
     141                rc = panel_read_dir(navigator->panel[i], ".");
     142                if (rc != EOK) {
     143                        printf("Error reading directory.\n");
     144                        goto error;
    139145                }
    140146        }
Note: See TracChangeset for help on using the changeset viewer.