summaryrefslogtreecommitdiff
path: root/package/strace/patches/patch-src_stage_output_c
blob: 0762e4a6c23f617ae6ad26fe69656fb14500c8e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- strace-5.15.orig/src/stage_output.c	2021-02-16 09:00:00.000000000 +0100
+++ strace-5.15/src/stage_output.c	2021-12-15 15:05:58.500813814 +0100
@@ -26,7 +26,7 @@ strace_open_memstream(struct tcb *tcp)
 {
 	FILE *fp = NULL;
 
-#if HAVE_OPEN_MEMSTREAM
+#if defined(HAVE_OPEN_MEMSTREAM)
 	tcp->staged_output_data = xmalloc(sizeof(*tcp->staged_output_data));
 	fp = open_memstream(&tcp->staged_output_data->memfptr,
 			    &tcp->staged_output_data->memfloc);
@@ -49,7 +49,7 @@ strace_open_memstream(struct tcb *tcp)
 void
 strace_close_memstream(struct tcb *tcp, bool publish)
 {
-#if HAVE_OPEN_MEMSTREAM
+#if defined(HAVE_OPEN_MEMSTREAM)
 	if (!tcp->staged_output_data) {
 		debug_msg("memstream already closed");
 		return;