Changeset 18902ca6 in mainline
- Timestamp:
- 2017-10-04T18:25:38Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fa77af7
- Parents:
- 63011c53
- Location:
- uspace
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nic/nic.c
r63011c53 r18902ca6 120 120 if (sess == NULL) { 121 121 printf("Error connecting to service.\n"); 122 rc = EIO; 122 123 goto error; 123 124 } … … 209 210 } 210 211 211 static const char *nic_multicast_mode_str(nic_ unicast_mode_t mode)212 static const char *nic_multicast_mode_str(nic_multicast_mode_t mode) 212 213 { 213 214 switch (mode) { … … 220 221 } 221 222 222 static const char *nic_broadcast_mode_str(nic_ unicast_mode_t mode)223 static const char *nic_broadcast_mode_str(nic_broadcast_mode_t mode) 223 224 { 224 225 switch (mode) { -
uspace/drv/bus/usb/ohci/hw_struct/transfer_descriptor.c
r63011c53 r18902ca6 78 78 79 79 /* Allow less data on input. */ 80 if (dir == USB_DIRECTION_IN) {80 if (direction == USB_DIRECTION_IN) { 81 81 OHCI_MEM32_SET(instance->status, TD_STATUS_ROUND_FLAG); 82 82 } -
uspace/lib/c/arch/amd64/include/libarch/elf_linux.h
r63011c53 r18902ca6 34 34 35 35 #ifndef LIBC_amd64_ELF_LINUX_H_ 36 #define L BIC_amd64_ELF_LINUX_H_36 #define LIBC_amd64_ELF_LINUX_H_ 37 37 38 38 #include <libarch/istate.h> -
uspace/lib/c/test/odict.c
r63011c53 r18902ca6 272 272 273 273 v = seq_next(v); 274 ++i;275 274 } 276 275 } -
uspace/srv/fs/exfat/exfat_ops.c
r63011c53 r18902ca6 595 595 int exfat_node_put(fs_node_t *fn) 596 596 { 597 if (fn == NULL) 598 return EOK; 599 597 600 exfat_node_t *nodep = EXFAT_NODE(fn); 598 601 bool destroy = false; … … 932 935 int exfat_free_block_count(service_id_t service_id, uint64_t *count) 933 936 { 934 fs_node_t *node ;937 fs_node_t *node = NULL; 935 938 exfat_node_t *bmap_node; 936 939 exfat_bs_t *bs; … … 945 948 946 949 bs = block_bb_get(service_id); 947 node = NULL;948 950 rc = exfat_bitmap_get(&node, service_id); 949 951 if (rc != EOK)
Note:
See TracChangeset
for help on using the changeset viewer.