1 From e6cfd977c81b335664db1d5d3d6b5488c245e30f Mon Sep 17 00:00:00 2001
2 From: Romain Naour <romain.naour@openwide.fr>
3 Date: Sat, 8 Aug 2015 18:26:15 +0200
4 Subject: [PATCH] add missing stdio.h header
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 snprinf is defined in stdio.h.
12 perf/perf_bundle.cpp: In function ‘void parse_event_format(const char*)’:
13 perf/perf_bundle.cpp:141:75: error: ‘sprintf’ was not declared in this scope
14 sprintf(file, "/sys/kernel/debug/tracing/events/%s/%s/format", sys, event);
16 Signed-off-by: Romain Naour <romain.naour@openwide.fr>
18 src/perf/perf_bundle.cpp | 1 +
19 1 file changed, 1 insertion(+)
21 diff --git a/src/perf/perf_bundle.cpp b/src/perf/perf_bundle.cpp
22 index cf1ae11..3d216ff 100644
23 --- a/src/perf/perf_bundle.cpp
24 +++ b/src/perf/perf_bundle.cpp
31 #include "perf_bundle.h"
32 #include "perf_event.h"