2023-07-17 09:39:01

by shijie001

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

The following checkpatch error is removed:
ERROR: "foo * bar" should be "foo *bar"

Signed-off-by: Jie Shi <[email protected]>
---
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 */