1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-22 19:23:31 +00:00

Added missing format string

This commit is contained in:
Bryan Roe
2020-10-29 14:43:02 -07:00
parent cb24703141
commit d529c5ec7c

View File

@@ -784,7 +784,7 @@ int wmain(int argc, char* wargv[])
} }
RegCloseKey(hKey); RegCloseKey(hKey);
} }
if (strEx != NULL) printf_s(strEx); else printf("Not defined, start the mesh service to create a nodeid."); if (strEx != NULL) printf_s("%s", strEx); else printf("Not defined, start the mesh service to create a nodeid.");
wmain_free(argv); wmain_free(argv);
return 0; return 0;
} }