From fb4969204664e1603372f9d1539d0bf9eacedc1b Mon Sep 17 00:00:00 2001 From: Thomas Date: Mon, 11 Sep 2017 14:52:13 +0200 Subject: [PATCH] replace tabs of parameter explanation comments of functions with spaces --- eltt2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/eltt2.c b/eltt2.c index 1937d3f..38710f0 100644 --- a/eltt2.c +++ b/eltt2.c @@ -1196,10 +1196,10 @@ static int get_random(char *data_length_string, uint8_t *response_buf) static int create_hash(char *data_string, char option, uint8_t *hash_cmd_buf, uint32_t hash_cmd_buf_size) { - int ret_val = EXIT_SUCCESS; // Return value. - uint32_t offset = 0; // Helper offset for generating command request. - uint16_t data_string_size = 0; // Size of user input data. - const uint8_t *tpm_hash_alg = NULL; // Pointer to hash algorithm identifier. + int ret_val = EXIT_SUCCESS; // Return value. + uint32_t offset = 0; // Helper offset for generating command request. + uint16_t data_string_size = 0; // Size of user input data. + const uint8_t *tpm_hash_alg = NULL; // Pointer to hash algorithm identifier. do {