diff options
| author | Harold Brenes <harold@hbrenes.com> | 2025-04-27 23:05:17 -0400 |
|---|---|---|
| committer | Harold Brenes <harold@hbrenes.com> | 2025-04-27 23:05:17 -0400 |
| commit | 89533f49e4fc2ae6f16551a51acaad115faffecd (patch) | |
| tree | ebb85685c21084ed94c5cab17a64197d9cdc9426 /src/checker.cpp | |
| parent | f3923ed66640ea9fd342ca851fdd2bd794405e0c (diff) | |
Fix more styling and minor issues
Diffstat (limited to 'src/checker.cpp')
| -rw-r--r-- | src/checker.cpp | 2 |
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); |