diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2026-02-19 23:59:53 -0500 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2026-02-19 23:59:53 -0500 |
| commit | 9073d89b87fcdcbbb1fa6f69c18b7a866cc4cbbc (patch) | |
| tree | d7515995417a3a5a6828645140550df35569f9c7 /src/environment.c | |
| parent | b780cff8e43bb9834ecd44f33ae8d33bb8528d82 (diff) | |
Bugfix
Diffstat (limited to 'src/environment.c')
| -rw-r--r-- | src/environment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/environment.c b/src/environment.c index 9779fb1c..82d20373 100644 --- a/src/environment.c +++ b/src/environment.c @@ -67,7 +67,7 @@ env_t *global_env(bool source_mapping) { (void)bind_type(env, "Int", Type(BigIntType)); (void)bind_type(env, "Int32", Type(IntType, .bits = TYPE_IBITS32)); (void)bind_type(env, "Memory", Type(MemoryType)); - (void)bind_type(env, "Path", Type(PathType)); + PATH_TYPE = bind_type(env, "Path", Type(PathType)); RESULT_TYPE = declare_type(env, "enum Result(Success, Failure(reason:Text))"); PRESENT_TYPE = declare_type(env, "struct Present()"); |
