Codechange: use the fmt library for simpler debug formats

This commit is contained in:
rubidium42
2021-06-11 21:17:07 +02:00
committed by rubidium42
parent 662d8dfc30
commit a99ac62c1a
3 changed files with 15 additions and 1 deletions

View File

@@ -103,7 +103,7 @@ char *DumpDebugFacilityNames(char *buf, char *last)
* @param dbg Debug category.
* @param buf Text line to output.
*/
static void debug_print(const char *dbg, const char *buf)
void debug_print(const char *dbg, const char *buf)
{
if (_debug_socket != INVALID_SOCKET) {
char buf2[1024 + 32];