repo.or.cz
/
oi-userland.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
ffmpeg-6: fix COMPONENT_REVISION
[oi-userland.git]
/
components
/
sysutils
/
moreutils
/
patches
/
01-define-max.patch
blob
e6dc5ec30fd22ab91aa49e0535eeabd63bf4b655
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 @@
4
5
#include "physmem.c"
6
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;