[PATCH] perf tools: Fix error in demangle-ocaml.h

shijie001@208suo.com posted 1 patch 2 years, 6 months ago
tools/perf/util/demangle-ocaml.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] perf tools: Fix error in demangle-ocaml.h
Posted by shijie001@208suo.com 2 years, 6 months ago
The following checkpatch error is removed:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Jie Shi <shijie001@208suo.com>
---
  tools/perf/util/demangle-ocaml.h | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/perf/util/demangle-ocaml.h 
b/tools/perf/util/demangle-ocaml.h
index 843cc4fa10a6..7fff95ae354e 100644
--- a/tools/perf/util/demangle-ocaml.h
+++ b/tools/perf/util/demangle-ocaml.h
@@ -2,6 +2,6 @@
  #ifndef __PERF_DEMANGLE_OCAML
  #define __PERF_DEMANGLE_OCAML 1

-char * ocaml_demangle_sym(const char *str);
+char *ocaml_demangle_sym(const char *str);

  #endif /* __PERF_DEMANGLE_OCAML */