Changeset a9d85df in mainline


Ignore:
Timestamp:
2011-06-21T19:04:11Z (13 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1875a0c
Parents:
3015f4d
Message:

cstyle

Location:
uspace
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/usb/src/debug.c

    r3015f4d ra9d85df  
    6868                if (rc > 0) {
    6969                        log_stream = fopen(fname, "w");
    70                         if (log_stream != NULL) {
     70                        if (log_stream != NULL)
    7171                                setvbuf(log_stream, NULL, _IOFBF, BUFSIZ);
    72                         }
     72                       
    7373                        free(fname);
    7474                }
  • uspace/lib/usbvirt/src/device.c

    r3015f4d ra9d85df  
    4949/** Main IPC call handling from virtual host controller.
    5050 *
    51  * @param iid           Caller identification
    52  * @param icall         Initial incoming call
    53  * @param arg           Local argument
     51 * @param iid   Caller identification
     52 * @param icall Initial incoming call
     53 * @param arg   Local argument
    5454 */
    5555static void callback_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
  • uspace/srv/fs/fat/fat_idx.c

    r3015f4d ra9d85df  
    5959typedef struct {
    6060        link_t          link;
    61         devmap_handle_t devmap_handle;
     61        devmap_handle_t devmap_handle;
    6262
    6363        /** Next unassigned index. */
    64         fs_index_t      next;
     64        fs_index_t next;
    6565        /** Number of remaining unassigned indices. */
    66         uint64_t        remaining;
     66        uint64_t remaining;
    6767
    6868        /** Sorted list of intervals of freed indices. */
    69         list_t          freed_list;
     69        list_t freed_list;
    7070} unused_t;
    7171
     
    9797                        return u;
    9898        }
    99 
     99       
    100100        if (lock)
    101101                fibril_mutex_unlock(&unused_lock);
Note: See TracChangeset for help on using the changeset viewer.