Changeset fe8961d in mainline
- Timestamp:
- 2017-10-05T07:07:45Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b669092
- Parents:
- 0cebbac
- Location:
- uspace/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/types/label.h
r0cebbac rfe8961d 124 124 } label_pcnt_t; 125 125 126 #define LPC_LIMIT (lpc_minix + 1) 127 126 128 #endif 127 129 -
uspace/lib/fdisk/src/fdisk.c
r0cebbac rfe8961d 1015 1015 max_blocks = fdisk_ba_align_up(dev, max_blocks); 1016 1016 1017 pcnt = LPC_LIMIT; 1018 1017 1019 switch (pspec->fstype) { 1018 1020 case fs_exfat: … … 1030 1032 case fs_cdfs: 1031 1033 return EINVAL; /* You cannot create an ISO partition */ 1032 default: 1034 } 1035 1036 if (pcnt == LPC_LIMIT) 1033 1037 return EINVAL; 1034 }1035 1038 1036 1039 if (pspec->pkind == lpk_logical) {
Note:
See TracChangeset
for help on using the changeset viewer.