udftools: remove obsolete gcc5 patch

fixed by setting C compiler standard

-19
-2
pkgs/tools/filesystems/udftools/default.nix
··· 10 10 11 11 buildInputs = [ ncurses readline ]; 12 12 13 - patches = [ ./gcc5.patch ]; 14 - 15 13 hardeningDisable = [ "fortify" ]; 16 14 17 15 NIX_CFLAGS_COMPILE = "-std=gnu90";
-17
pkgs/tools/filesystems/udftools/gcc5.patch
··· 1 - --- udftools-1.0.0b3/libudffs/desc.c 2016-02-07 23:21:38.595391610 +0000 2 - +++ udftools-1.0.0b3/libudffs/desc.c 2016-02-07 23:21:57.759756269 +0000 3 - @@ -34,12 +34,12 @@ 4 - #include "libudffs.h" 5 - #include "config.h" 6 - 7 - -inline struct impUseVolDescImpUse *query_iuvdiu(struct udf_disc *disc) 8 - +extern struct impUseVolDescImpUse *query_iuvdiu(struct udf_disc *disc) 9 - { 10 - return (struct impUseVolDescImpUse *)disc->udf_iuvd[0]->impUse; 11 - } 12 - 13 - -inline struct logicalVolIntegrityDescImpUse *query_lvidiu(struct udf_disc *disc) 14 - +extern struct logicalVolIntegrityDescImpUse *query_lvidiu(struct udf_disc *disc) 15 - { 16 - return (struct logicalVolIntegrityDescImpUse *)&(disc->udf_lvid->impUse[le32_to_cpu(disc->udf_lvd[0]->numPartitionMaps) * 2 * sizeof(uint32_t)]); 17 - }