Replace tabs with spaces

Coding style uses indent with spaces, but there were a few lost tabs
that had to be replaced.
This commit is contained in:
Andrei Preda 2017-08-22 02:41:29 -07:00
parent c8577e3d83
commit 78651742fb

View File

@ -171,8 +171,7 @@ namespace util
* Function: join
* Parameters:
* [in] vec : Vector of strings which needs to be joined to form
* a single string with words seperated by
* a seperator char.
* a single string with words seperated by a seperator char.
* [in] sep : String used to seperate 2 words in the joined string.
* Default constructed to ' ' (space).
* [out] string: Joined string.
@ -325,7 +324,7 @@ namespace util
buf.resize(orig_size);
buffer += rd_bytes;
total_bytes_read += rd_bytes;
} else if (rd_bytes != -1){
} else if (rd_bytes != -1) {
total_bytes_read += rd_bytes;
break;
} else {