diff mrjunejune/main.c @ 248:b8b6e726964a

[style] Use Dowa type aliases in C Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Tue, 04 Aug 2026 02:44:06 -0700
parents b8aa08503378
children 745fd127b2a1
line wrap: on
line diff
--- a/mrjunejune/main.c	Mon Aug 03 20:20:06 2026 -0700
+++ b/mrjunejune/main.c	Tue Aug 04 02:44:06 2026 -0700
@@ -14,7 +14,7 @@
 #define UUID_LEN 37
 
 volatile sig_atomic_t stop_server = 0;
-static _Atomic uint32_t counter = 0;
+static _Atomic uint32 counter = 0;
 static _Atomic boolean g_latex_rendering = FALSE;
 
 // Media Processing Context for background threads
@@ -360,7 +360,7 @@
     return LatexErrorResponse(arena, 429, "The LaTeX compiler is busy. Try again shortly.");
 
   Latex_Render_Result render = Latex_Render(
-      (const uint8_t *)((Seobeo_Request_Entry *)body_kv)->value,
+      (const uint8 *)((Seobeo_Request_Entry *)body_kv)->value,
       (size_t)parsed_length);
   atomic_store(&g_latex_rendering, FALSE);
   if (render.status != LATEX_RENDER_OK)