Changeset 850fd32 in mainline for uspace/lib/c/generic/vfs/inbox.c


Ignore:
Timestamp:
2018-03-11T01:21:19Z (7 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
84239b1, f0e825d
Parents:
338d54a7
Message:

Fix mischievious semicolons.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/vfs/inbox.c

    r338d54a7 r850fd32  
    7979{
    8080        inbox_entry *next = NULL;
     81        int result;
    8182
    8283        list_foreach(inb_list, link, inbox_entry, e) {
     
    8586                case -1:
    8687                        continue;
    87                 case 0:;
    88                         int result = e->file;
     88                case 0:
     89                        result = e->file;
    8990                        if (file == -1) {
    9091                                free(e->name);
Note: See TracChangeset for help on using the changeset viewer.