aboutsummaryrefslogtreecommitdiff
path: root/dc/dc.c
diff options
context:
space:
mode:
authoriamcheeseman <[email protected]>2026-05-10 16:51:01 -0400
committeriamcheeseman <[email protected]>2026-05-10 16:51:01 -0400
commit066bfe5cbd3b2d1cfe36c26d49971f3acfe30f72 (patch)
treec38f3bf3ca178fb0d3d989134fb5f912d7c48291 /dc/dc.c
parent0ab5229e6bf86bead5e5ca7e0903f23246eca02e (diff)
adjust log capitializing
standards for this project are camel cased logging message. Like this: sentence 1. Sentence 2
Diffstat (limited to 'dc/dc.c')
-rw-r--r--dc/dc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dc/dc.c b/dc/dc.c
index 942174b..83cf1d9 100644
--- a/dc/dc.c
+++ b/dc/dc.c
@@ -25,7 +25,7 @@ int main(void)
qoi_desc desc;
void *data = qoi_read("test_img.qoi", &desc, 3);
if (!data)
- ty_log_fatal(TY_ERR_IO, "Failed to read image");
+ ty_log_fatal(TY_ERR_IO, "failed to read image");
struct ty_image img = ty_create_image(desc.width, desc.height, data);
free(data);