- Timestamp:
- 2018-06-14T19:02:26Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 587478b
- Parents:
- abf8bd8
- git-author:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-14 17:48:39)
- git-committer:
- Jiří Zárevúcky <jiri.zarevucky@…> (2018-06-14 19:02:26)
- Location:
- uspace
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
rabf8bd8 r2f7d77c6 190 190 endif 191 191 192 ifeq ($(CONFIG_UBSAN),y) 193 DEFAULT_CFLAGS += -fsanitize=undefined 194 endif 195 192 196 ifeq ($(COMPILER),clang) 193 197 DEFAULT_CFLAGS += \ -
uspace/lib/c/Makefile
rabf8bd8 r2f7d77c6 165 165 generic/pio_trace.c \ 166 166 generic/qsort.c \ 167 generic/ubsan.c \ 167 168 generic/uuid.c \ 168 169 generic/vbd.c \ -
uspace/srv/fs/fat/fat_fat.c
rabf8bd8 r2f7d77c6 967 967 */ 968 968 if (!FAT_IS_FAT12(bs) && 969 ((e0 >> 8) != ( FAT_MASK(bs) >> 8) || e1 != FAT_MASK(bs)))969 ((e0 >> 8) != ((fat_cluster_t) FAT_MASK(bs) >> 8) || e1 != FAT_MASK(bs))) 970 970 return ENOTSUP; 971 971 }
Note:
See TracChangeset
for help on using the changeset viewer.