about summary refs log tree commit diff stats
path: root/src/plugins/c_api.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2023-04-14 22:01:28 +0200
committerGitHub <noreply@github.com>2023-04-14 22:01:28 +0200
commit6eacfcb96e06c90570557361037b08f1a919eb2e (patch)
tree325e4cb308673abdce7b0c9b41ae61bad43eece3 /src/plugins/c_api.c
parent9bce23e075e4ec4ad7c888688226c7136d5f9257 (diff)
parenta1814fd3cb102b1e66e95506c5dc31f8587001f9 (diff)
downloadprofani-tty-6eacfcb96e06c90570557361037b08f1a919eb2e.tar.gz
Merge pull request #1828 from profanity-im/newclang
Use GH action for code style check
Diffstat (limited to 'src/plugins/c_api.c')
-rw-r--r--src/plugins/c_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/c_api.c b/src/plugins/c_api.c
index cda40c4d..8daf633d 100644
--- a/src/plugins/c_api.c
+++ b/src/plugins/c_api.c
@@ -455,7 +455,7 @@ void
 c_command_callback(PluginCommand* command, gchar** args)
 {
     CommandWrapper* wrapper = command->callback;
-    void (*f)(gchar * *args) = wrapper->func;
+    void (*f)(gchar** args) = wrapper->func;
     f(args);
 }