Variable name fixes (#758)

This commit is contained in:
Tyler Veness
2017-11-22 17:06:57 -08:00
committed by Peter Johnson
parent 85157a56c3
commit 96de0b5b11
6 changed files with 36 additions and 36 deletions

View File

@@ -74,13 +74,13 @@ void DriverStation::ReportWarning(llvm::StringRef error) {
*
* The error is also printed to the program console.
*/
void DriverStation::ReportError(bool is_error, int32_t code,
void DriverStation::ReportError(bool isError, int32_t code,
llvm::StringRef error, llvm::StringRef location,
llvm::StringRef stack) {
llvm::SmallString<128> errorTemp;
llvm::SmallString<128> locationTemp;
llvm::SmallString<128> stackTemp;
HAL_SendError(is_error, code, 0, error.c_str(errorTemp),
HAL_SendError(isError, code, 0, error.c_str(errorTemp),
location.c_str(locationTemp), stack.c_str(stackTemp), 1);
}