d11878
--- crash-trace-command-2.0/trace.c.orig
d11878
+++ crash-trace-command-2.0/trace.c
d11878
@@ -15,6 +15,7 @@
d11878
 #include <stdio.h>
d11878
 #include <ctype.h>
d11878
 #include <setjmp.h>
d11878
+#include <stdlib.h>
d11878
 
d11878
 static int verbose = 0;
d11878
 
d11878
@@ -892,7 +893,7 @@ out_fail:
d11878
 
d11878
 static int ftrace_init_event_type(ulong call, struct event_type *aevent_type)
d11878
 {
d11878
-	ulong fields_head;
d11878
+	ulong fields_head = 0;
d11878
 
d11878
 	if (ftrace_get_event_type_fields(call, &fields_head) < 0)
d11878
 		return -1;
d11878
@@ -1443,6 +1444,8 @@ static void ftrace_show(int argc, char *
d11878
 	int fd;
d11878
 	FILE *file;
d11878
 	size_t ret;
d11878
+	size_t nitems __attribute__ ((__unused__));
d11878
+	char *unused __attribute__ ((__unused__));
d11878
 
d11878
 	/* check trace-cmd */
d11878
 	if (env_trace_cmd)
d11878
@@ -1465,7 +1468,7 @@ static void ftrace_show(int argc, char *
d11878
 	}
d11878
 
d11878
 	/* dump trace.dat to the temp file */
d11878
-	mktemp(tmp);
d11878
+	unused = mktemp(tmp);
d11878
 	fd = open(tmp, O_WRONLY | O_CREAT | O_TRUNC, 0644);
d11878
 	if (trace_cmd_data_output(fd) < 0)
d11878
 		goto out;
d11878
@@ -1478,7 +1481,7 @@ static void ftrace_show(int argc, char *
d11878
 		ret = fread(buf, 1, sizeof(buf), file);
d11878
 		if (ret == 0)
d11878
 			break;
d11878
-		fwrite(buf, 1, ret, fp);
d11878
+		nitems = fwrite(buf, 1, ret, fp);
d11878
 	}
d11878
 	pclose(file);
d11878
 out: