mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
include/common/buf.h: fix declaration/definition arg name difference
This commit is contained in:
parent
389cef9c3b
commit
4c1e66f6c8
1 changed files with 2 additions and 2 deletions
|
|
@ -71,9 +71,9 @@ void buf_add(struct buf *s, const char *data);
|
|||
/**
|
||||
* buf_add_char - add single char to C string buffer
|
||||
* @s: buffer
|
||||
* @data: char to be added
|
||||
* @ch: char to be added
|
||||
*/
|
||||
void buf_add_char(struct buf *s, char data);
|
||||
void buf_add_char(struct buf *s, char ch);
|
||||
|
||||
/**
|
||||
* buf_clear - clear the buffer, internal allocations are preserved
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue