Update base/applications/network/tracert/tracert.cpp

Remove extra space

Co-authored-by: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito@reactos.org>
This commit is contained in:
Curtis Wilson 2025-03-11 14:57:18 -04:00 committed by GitHub
parent a4e4160ecd
commit 3e8d439ae9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -228,7 +228,7 @@ GetULONG(
errno = 0;
// try to convert String to ULONG
*Value = wcstoul(String, &StopString, 10);
*Value = wcstoul(String, &StopString, 10);
if (errno != 0 || *StopString != UNICODE_NULL)
{
SetLastError(ERROR_INVALID_DATA);