Ignore:
Timestamp:
2018-01-30T03:20:45Z (8 years ago)
Author:
Jenda <jenda.jzqk73@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5a6cc679
Parents:
8bfb163 (diff), 6a5d05b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge commit '6a5d05bd2551e64111bea4f9332dd7448c26ce84' into forwardport

Separate return value from error code in gen_irq_code*().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/srv/fs/exfat/exfat_directory.c

    r8bfb163 r132ab5d1  
    4343#include <byteorder.h>
    4444#include <mem.h>
    45 #include <malloc.h>
     45#include <stdlib.h>
    4646#include <str.h>
    4747#include <align.h>
     
    218218        uint16_t wname[EXFAT_FILENAME_LEN + 1];
    219219        exfat_dentry_t *d = NULL;
    220         int rc, i;
     220        int rc;
     221        int i;
    221222        size_t offset = 0;
    222223        aoff64_t start_pos = 0;
     
    305306    exfat_stream_dentry_t *ds)
    306307{
    307         int rc, i, count;
     308        int rc;
     309        int i, count;
    308310        exfat_dentry_t *array = NULL, *de;
    309311        aoff64_t pos = di->pos;
     
    372374        exfat_dentry_t df, ds, *de;
    373375        uint16_t wname[EXFAT_FILENAME_LEN + 1];
    374         int rc, i;
     376        int rc;
     377        int i;
    375378        size_t uctable_chars, j;
    376379        aoff64_t pos;
     
    473476int exfat_directory_erase_file(exfat_directory_t *di, aoff64_t pos)
    474477{
    475         int rc, count;
     478        int rc;
     479        int count;
    476480        exfat_dentry_t *de;
    477481
Note: See TracChangeset for help on using the changeset viewer.