fix for doxygen

git-svn-id: file:///svn/unbound/trunk@4516 be551aaa-1e26-0410-a405-d3ace91eadb9
This commit is contained in:
Wouter Wijngaards 2018-02-06 16:00:10 +00:00
parent 0ab8edd170
commit 88c43a1b45
2 changed files with 2 additions and 2 deletions

View File

@ -3612,7 +3612,7 @@ chunkline_get_line(struct auth_chunk** chunk, size_t* chunk_pos,
"line too long");
return 0;
}
sldns_buffer_write_u8(buf, c);
sldns_buffer_write_u8(buf, (uint8_t)c);
if(c == '\n') {
/* we are done */
return 1;

View File

@ -555,7 +555,7 @@ int sldns_str2wire_hip_buf(const char* str, uint8_t* rd, size_t* len);
int sldns_str2wire_int16_data_buf(const char* str, uint8_t* rd, size_t* len);
/**
* Strip whitespace from the start and the end of <line>.
* Strip whitespace from the start and the end of line.
* @param line: modified with 0 to shorten it.
* @return new start with spaces skipped.
*/