Fixing indent

Spaces not tabs
This commit is contained in:
Michael Tryby
2019-04-10 11:25:01 -04:00
parent dba0d1cf52
commit fbecf1b915
4 changed files with 42 additions and 43 deletions

View File

@@ -45,16 +45,16 @@ BOOST_AUTO_TEST_CASE (test_create_destroy)
struct Fixture{
Fixture() {
error_message = NULL;
error_message = NULL;
error_handle = create_error_manager(&mock_lookup);
}
~Fixture() {
delete_error_manager(error_handle);
free(error_message);
}
int error;
error_handle_t *error_handle;
char *error_message;
}
int error;
error_handle_t *error_handle;
char *error_message;
};