Update bootloader/itoa.cpp

Co-authored-by: Lauryy06 <80424145+Lauryy06@users.noreply.github.com>
This commit is contained in:
devdl11
2022-04-08 13:16:52 +02:00
committed by GitHub
parent c65b1c6d3c
commit 3328bc28b9

View File

@@ -61,4 +61,4 @@ char* Bootloader::Utility::itoa(int value, char* buffer, int base)
// reverse the string and return it
return reverse(buffer, 0, i - 1);
}
}