Changes in / [e067dcd:eb73a50] in mainline
- Location:
- uspace
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/generic/async.c
re067dcd reb73a50 1310 1310 IPC_FF_ROUTE_FROM_ME); 1311 1311 if (retval != EOK) { 1312 async_wait_for(msg, NULL); 1312 1313 ipc_answer_0(callid, retval); 1313 1314 return retval; … … 1495 1496 IPC_FF_ROUTE_FROM_ME); 1496 1497 if (retval != EOK) { 1498 async_wait_for(msg, NULL); 1497 1499 ipc_answer_0(callid, retval); 1498 1500 return retval; -
uspace/srv/fs/fat/fat_fat.c
re067dcd reb73a50 361 361 uint16_t rscnt; 362 362 uint16_t sf; 363 uint 16_t ts;363 uint32_t ts; 364 364 unsigned rde; 365 365 unsigned rds; … … 379 379 sf = uint16_t_le2host(bs->sec_per_fat); 380 380 rde = uint16_t_le2host(bs->root_ent_max); 381 ts = uint16_t_le2host(bs->totsec16); 381 ts = (uint32_t) uint16_t_le2host(bs->totsec16); 382 if (ts == 0) 383 ts = uint32_t_le2host(bs->totsec32); 382 384 383 385 rds = (sizeof(fat_dentry_t) * rde) / bps;
Note:
See TracChangeset
for help on using the changeset viewer.