shithub: MicroHs

Download patch

ref: 40aea484f78df68538144ab19fd8ebde15bda5b7
parent: 5355ad5a63bd77ed01b2e131fd88ef9a24dc023f
author: Lennart Augustsson <lennart.augustsson@epicgames.com>
date: Wed Jan 10 07:24:43 EST 2024

Fix typo.

--- a/src/runtime/eval.c
+++ b/src/runtime/eval.c
@@ -1088,7 +1088,7 @@
   for(int j = 0; (buf[j] = getNT(f)); j++)
     ;
 
-  return strtod(buf, NULL);;
+  return strtod(buf, NULL);
 }
 #endif
 
--