aboutsummaryrefslogtreecommitdiff
path: root/src/naming.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 18:20:43 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 18:20:43 -0400
commita4b8ef38b1d7a26b4e6bfa966f021a237bf16ce1 (patch)
treea4137025b4096749341513f44c12d381ceb636bf /src/naming.c
parentecf08ab61fe49101b6c769badf362d21d8699df4 (diff)
Lots of cleanups
Diffstat (limited to 'src/naming.c')
-rw-r--r--src/naming.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/naming.c b/src/naming.c
index 664fd970..3bf71597 100644
--- a/src/naming.c
+++ b/src/naming.c
@@ -63,7 +63,7 @@ public 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: ", id_file);
+ if (id.length < 0) err(1, "Could not read ID file: %s", id_file);
return Texts(Text("$"), id);
}