This library contains code that extends and simplifies different operations
for C language based programs.
Revisión | 51c0cb3b217dccdc346a1694925d71659e7784e5 (tree) |
---|---|
Tiempo | 2022-08-30 06:15:50 |
Autor | Sergey Gusarov <laborer2008@gmai...> |
Commiter | Sergey Gusarov |
Windows compilation fix
@@ -65,7 +65,7 @@ | ||
65 | 65 | |
66 | 66 | #if defined(CT_OS_WINDOWS) |
67 | 67 | if (!(mode[0] == 'a' || mode[0] == 'r' || mode[0] == 'w')) |
68 | - CT_TRACE_ERRORN('Invalid first mode characted: %c', mode[0]); | |
68 | + CT_TRACE_ERRORN("Invalid first mode characted: %c", mode[0]); | |
69 | 69 | #endif |
70 | 70 | |
71 | 71 | fopenResult = fopen(path, mode); |