summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorJoshua Liu <joshua.liu@sourceobby.com>2025-06-24 18:16:36 -0400
committerJoshua Liu <joshua.liu@sourceobby.com>2025-06-24 18:16:36 -0400
commitfdf5c358291960327931f44d6b09f4fe892e1930 (patch)
tree21c014d7da7039d5edb0b2f286d65fe230b3d3c2 /util.c
parente00decbd6637f6fbca4c6dd107439a064f33feb1 (diff)
bugfix: I guess fprintf_s is not available
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 84733b1..4f98a63 100644
--- a/util.c
+++ b/util.c
@@ -3,7 +3,7 @@
int
die(const char* msg)
{
- fprintf_s(stderr, "%s\n", msg);
+ fprintf(stderr, "%s\n", msg);
exit(-1);
}