aboutsummaryrefslogtreecommitdiff
path: root/src/checker.cpp
diff options
context:
space:
mode:
authorHarold Brenes <harold@hbrenes.com>2025-04-27 23:05:17 -0400
committerHarold Brenes <harold@hbrenes.com>2025-04-27 23:05:17 -0400
commit89533f49e4fc2ae6f16551a51acaad115faffecd (patch)
treeebb85685c21084ed94c5cab17a64197d9cdc9426 /src/checker.cpp
parentf3923ed66640ea9fd342ca851fdd2bd794405e0c (diff)
Fix more styling and minor issues
Diffstat (limited to 'src/checker.cpp')
-rw-r--r--src/checker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/checker.cpp b/src/checker.cpp
index 6563b1c58..15d19fb1a 100644
--- a/src/checker.cpp
+++ b/src/checker.cpp
@@ -6491,7 +6491,7 @@ gb_internal void check_objc_context_provider_procedures(Checker *c) {
Type *proc_type = proc_entity->type;
// TODO(harold): Give better errors here (specify exactly what's wrong)
- const char* signature_error = "The procedure for @(objc_context_provider) has an incorrect signature.";
+ const char *signature_error = "The procedure for @(objc_context_provider) has an incorrect signature.";
if (proc_type->Proc.param_count != 1 || proc_type->Proc.result_count != 1) {
error(proc_entity->token, signature_error);