diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-02-29 12:46:55 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-02-29 12:46:55 -0500 |
| commit | dcd4fd77976a7e8a9ef1f4778514f36f883c27c4 (patch) | |
| tree | 9f94f8209e73c9b2b9cea1c29fd1670f0efe77ae /builtins/functions.c | |
| parent | 291a0ed40cc141496428cc2bbff606d32e4af9da (diff) | |
Fix const issue
Diffstat (limited to 'builtins/functions.c')
| -rw-r--r-- | builtins/functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtins/functions.c b/builtins/functions.c index 9283bc38..5f66c1e1 100644 --- a/builtins/functions.c +++ b/builtins/functions.c @@ -148,7 +148,7 @@ static inline char *without_colors(const char *str) return buf; } -public void __doctest(void *expr, TypeInfo *type, CORD expected, const char *filename, int64_t start, int64_t end) +public void __doctest(void *expr, const TypeInfo *type, CORD expected, const char *filename, int64_t start, int64_t end) { static file_t *file = NULL; if (filename && (file == NULL || strcmp(file->filename, filename) != 0)) |
