ffmpeg-6: fix COMPONENT_REVISION
[oi-userland.git] / components / sysutils / moreutils / patches / 01-define-max.patch
blobe6dc5ec30fd22ab91aa49e0535eeabd63bf4b655
1 --- moreutils-0.67/sponge.c.orig 2021-12-21 20:39:00.000000000 +0100
2 +++ moreutils-0.67/sponge.c 2023-05-01 11:11:04.567344131 +0200
3 @@ -38,6 +38,7 @@
5 #include "physmem.c"
7 +#define MAX(a, b) (((a) > (b)) ? (a) : (b))
8 #define BUFF_SIZE 8192
9 #define MIN_SPONGE_SIZE BUFF_SIZE
10 char *tmpname = NULL;