Changeset 82582e4 in mainline for uspace/lib/c/generic/io/io.c


Ignore:
Timestamp:
2011-04-21T20:38:25Z (13 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
74c8f344, df3c6f02
Parents:
382cd26
Message:

Fix fopen(_, a) by adding a missing break statement.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/c/generic/io/io.c

    r382cd26 r82582e4  
    173173                }
    174174                *flags = (O_APPEND | O_CREAT) | (plus ? O_RDWR : O_WRONLY);
     175                break;
    175176        default:
    176177                errno = EINVAL;
Note: See TracChangeset for help on using the changeset viewer.