[Openmp-commits] [openmp] [OpenMP] Update printf statement with missing argument. (PR #153704)
via Openmp-commits
openmp-commits at lists.llvm.org
Thu Aug 14 15:30:57 PDT 2025
github-actions[bot] wrote:
<!--LLVM CODE FORMAT COMMENT: {clang-format}-->
:warning: C/C++ code formatter, clang-format found issues in your code. :warning:
<details>
<summary>
You can test this locally with the following command:
</summary>
``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions c -- openmp/libompd/gdb-plugin/ompdModule.c
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/openmp/libompd/gdb-plugin/ompdModule.c b/openmp/libompd/gdb-plugin/ompdModule.c
index fb237b1f1..cbc62e2a4 100644
--- a/openmp/libompd/gdb-plugin/ompdModule.c
+++ b/openmp/libompd/gdb-plugin/ompdModule.c
@@ -967,7 +967,8 @@ static PyObject *call_ompd_get_task_parallel_handle(PyObject *self,
if (retVal != ompd_rc_ok) {
_printf("An error occurred when calling ompd_get_task_parallel_handle! "
- "Error code: %d", retVal);
+ "Error code: %d",
+ retVal);
return Py_BuildValue("l", retVal);
}
return PyCapsule_New(taskParallelHandle, "ParallelHandle",
``````````
</details>
https://github.com/llvm/llvm-project/pull/153704
More information about the Openmp-commits
mailing list