examples/core/core_custom_logging.c: Fix typo

This commit is contained in:
Nathan Hartman 2022-09-08 10:03:01 -04:00
parent ac1ffbad1d
commit c569246394

View File

@ -18,7 +18,7 @@
#include <stdio.h> // Required for: fopen(), fclose(), fputc(), fwrite(), printf(), fprintf(), funopen()
#include <time.h> // Required for: time_t, tm, time(), localtime(), strftime()
// Custom logging funtion
// Custom logging function
void CustomLog(int msgType, const char *text, va_list args)
{
char timeStr[64] = { 0 };