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

From: shijie001
Date: Mon Jul 17 2023 - 04:36:50 EST


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

Signed-off-by: Jie Shi <shijie001@xxxxxxxxxx>
---
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 */