diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-09 23:49:30 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-09 23:49:30 -0400 |
| commit | 3a8841af6d15763e4c322c2c7671582ed6c3b006 (patch) | |
| tree | 1cab5ada3d2609acc10d5f95576a82deda45feed /src/naming.c | |
| parent | df0989160f359fe70be9ccf01a1a6b0664aaf6a2 (diff) | |
Minor cleanups
Diffstat (limited to 'src/naming.c')
| -rw-r--r-- | src/naming.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/naming.c b/src/naming.c index 376a176c..08a568ac 100644 --- a/src/naming.c +++ b/src/naming.c @@ -113,5 +113,5 @@ Text_t get_id_suffix(const char *filename) { Path_t id_file = Path$child(build_dir, Texts(Path$base_name(path), Text$from_str(".id"))); OptionalText_t id = Path$read(id_file); if (id.length < 0) err(1, "Could not read ID file: %s", id_file); - return Texts(Text("$"), id); + return Texts("$", id); } |
